in reply to Re: Re: Database Connection Pooling
in thread Database Connection Pooling

Each Perl interpreter keeps a connection open. With the pre-fork MPM (or mod_perl 1.x), that means one per process.

There is a working prototype right now for true pooling of db connections between threads, so hopefully that will be available soon. However, this is really only helpful for applications that do a lot of non-database work and ones where each user has a different database login.

  • Comment on Re: Re: Re: Database Connection Pooling