I just wanted to know the concept of database connection pooling and how it is achieved.
I just wanted to know the concept of database connection pooling and how it is achieved.
As the name suggests. If a few people wants to swim, they can swim in the same swimming-pool, does it really make sense to construct a new swimming-pool each time someone adds in ? Time and cost is a priority.
Database connection pooling is simply caching connections to databases so that they can be reused next time to reduce the cost of establishing a new connection each time we want to connect to a database.