How does connection pooling improve the performance of database-driven applications?

  • Caches database queries
  • Has no impact on database connections
  • Increases the number of open database connections
  • Reduces the number of open database connections
Connection pooling improves performance by reducing the number of open database connections, reusing existing ones, and avoiding the overhead of opening and closing connections frequently.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *