Table of Contents

About

Connection pools allow multiple concurrent requests (queries,…) to share a single connection, reducing the connection overhead because a connection takes time (a session must be created, memory allocated, …).

The most known connection pool are database connection pool.

Java Library

Database