Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

What is connection pooling?

2 like 0 dislike
What is connection pooling and how do you make your application use it?
asked 1 year ago by marck_don (191,010 points)

1 Answer

1 like 0 dislike
 
Best answer
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 go through the following link as well
answered 1 year ago by daneim (127,080 points)

Related questions

4 like 0 dislike
0 answers
8 like 0 dislike
1 answer
2 like 0 dislike
1 answer
9 like 0 dislike
2 answers
8 like 0 dislike
1 answer