Re: How to use DB Connection Pool in mod_perl2 ?

2005-09-13 Thread Perrin Harkins
On Tue, 2005-09-13 at 11:58 -0700, Philippe M. Chiasson wrote: > I think it oughta be possible too with DBD::Proxy and DBD::ProxyServer DBD::Proxy is very slow. I would recommend avoiding it if you have any other choice available. > Unless you are stuck in a situation where you must control the

Re: How to use DB Connection Pool in mod_perl2 ?

2005-09-13 Thread Philippe M. Chiasson
Perrin Harkins wrote: > On Mon, 2005-09-12 at 14:27 +0800, firingme wrote: > >>I want to know is there any package can give me a DB Connection Pool >>in a mod_perl application ? >> >>I've checked Apache::DBI, but it seems that it'll initialze a >>new connection when a new thread born. > > The onl

Re: How to use DB Connection Pool in mod_perl2 ?

2005-09-13 Thread Perrin Harkins
On Mon, 2005-09-12 at 14:27 +0800, firingme wrote: > I want to know is there any package can give me a DB Connection Pool > in a mod_perl application ? > > I've checked Apache::DBI, but it seems that it'll initialze a > new connection when a new thread born. The only existing solution is sql-rela

Re: How to use DB Connection Pool in mod_perl2 ?

2005-09-12 Thread Philip M. Gollucci
Malcolm J Harwood wrote: On Monday 12 September 2005 02:27 am, firingme wrote: I want to know is there any package can give me a DB Connection Pool in a mod_perl application ? I think he's looking for DBI::Pool which subclasses DBI. This is incomplete. Last I heard Tim/Stas were working on i

Re: How to use DB Connection Pool in mod_perl2 ?

2005-09-12 Thread Malcolm J Harwood
On Monday 12 September 2005 02:27 am, firingme wrote: > I want to know is there any package can give me a DB Connection Pool > in a mod_perl application ? > I've checked Apache::DBI, but it seems that it'll initialze a > new connection when a new thread born. Do you mean thread or process? I'm n

How to use DB Connection Pool in mod_perl2 ?

2005-09-12 Thread firingme
I want to know is there any package can give me a DB Connection Pool in a mod_perl application ? I've checked Apache::DBI, but it seems that it'll initialze a new connection when a new thread born.