InterviewSolution
Saved Bookmarks
| 1. |
What Is Connection Pooling? What Is The Main Advantage Of Using Connection Pooling? |
|
Answer» A connection POOL is a mechanism to REUSE connections created. Connection pooling can increase performance dramatically by REUSING connections rather than creating a new PHYSICAL connection each time a connection is REQUESTED. A connection pool is a mechanism to reuse connections created. Connection pooling can increase performance dramatically by reusing connections rather than creating a new physical connection each time a connection is requested. |
|