| 1. |
What Is Connection Pooling? |
|
Answer» Connection pooling refers to the task of grouping database CONNECTIONS in cache to make them reusable because opening new connections every TIME to a database is a time-consuming process. THEREFORE, connection pooling enables you to reuse already existing and active database connections, whenever required, and increasing the performance of your application. Connection pooling refers to the task of grouping database connections in cache to make them reusable because opening new connections every time to a database is a time-consuming process. Therefore, connection pooling enables you to reuse already existing and active database connections, whenever required, and increasing the performance of your application. |
|