On Nov 24, 2007 9:45 PM, Mag Gam <[EMAIL PROTECTED]> wrote:
> Is it possible to do database connection pooling with mod_perl?

There are options.  Are you getting close to the maximum connection
your database can handle?  You should be running a reverse proxy in
front of your mod_perl server, which typically cuts the number of
mod_perl processes, and thus database connections, by a factor of 10.

If you have a reverse proxy, and still have too many connections, you
can look at either SQL Relay or the DBI::Gofer stuff in the latest DBI
releases.  DBI::Gofer was created to solve the issue of too many
connections for Shopzilla.com.

- Perrin

Reply via email to