Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 62534 invoked by uid 500); 14 Feb 2003 23:25:13 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 62520 invoked from network); 14 Feb 2003 23:25:13 -0000 Message-ID: <3E4D7B22.4080909@yahoo.com> Date: Fri, 14 Feb 2003 16:26:26 -0700 From: David Shane Holden User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3a) Gecko/20021212 X-Accept-Language: en-us, en MIME-Version: 1.0 To: dev@httpd.apache.org Subject: Re: mod_authn_mysql References: <20030211215222.M68113@cyan.com> <3E4D6507.8030409@yahoo.com> <20030214225009.M89944@cyan.com> In-Reply-To: <20030214225009.M89944@cyan.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Paul Querna wrote: > On Fri, 14 Feb 2003 14:52:07 -0700, David Shane Holden wrote > >>Since there seems to be some interest in including a mysql auth >>module into the tree, here's a postgres module which I've coded and >>have been using for the past month or so. As for a connection >>pool... I haven't figured out a way to have postres use a connection >>opened by another process... it likes spiking the cpu and sitting in >>some pqbytes function or some shit like that when doing a query on it. >> >>https://dpejesh.dnsalias.net/repos/mod_auth_pgsql/trunk/ >> >>Shane > > > > I am using apr_reslist to implment pooling of Database connections. > > My problem isn't managing a pool of connections... it's if process A creates the connection, process B can use it with no problem, but if process C tries to use it, it barfs and spikes in a function in libpq, i think it was pgbytes. Shane