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-relay: http://sqlrelay.sourceforge.net/ However, in most cases a pool is not necessary. Persistent connections are typically all that you need. - Perrin