Home »

What is connection pooling and how do you make your application use it?

Question ListCategory: .NETWhat is connection pooling and how do you make your application use it?
shah_kajal184 author asked 8 years ago
1 Answers
shah_kajal184 author answered 8 years ago

Opening database connection is a time consuming operation.
Connection pooling increases the performance of the applications by reusing the active database connections instead of create new connection for every request.
Connection pooling Behaviour is controlled by the connection string parameters.
Follwing the the 4 parameters that control most of the connection pooling behaviour.
1. Connect Timeout
2. Max Pool Size
3. Min Pool Size
4. Pooling

Please login or Register to Submit Answer