What is Connection pooling?- A connection pooling is a technique of reusing active database connections instead of creating a new connection with every request. - It involves little or no code modification but can often provide significant benefits in terms of application performance, concurrency and scalability. - Improvements such as these can become especially important when your application is tasked with servicing many concurrent users within the requirements of sub second response time. - By adhering to a small number of relatively simple connection pooling best practices your application can quickly and easily take effective advantage of connection pooling.
|