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

The reason I've used connection pooling is when the total number of clients is potentially very large (5-10 thousand or more). Maintaining a very large number of connections on the database server generates quite a bit of overhead. If these connections aren't active all the time then pooling them can make sense.

Michael

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