Performance

Connection Pool

English

Overview

A mechanism that pre-establishes multiple DB connections and reuses them.

Details

A mechanism that establishes DB connections ahead of time and keeps them in a pool, cutting the per-request cost of connecting. Once the connection limit is exceeded, requests have to wait, so sizing the pool to match the app's concurrency is important.

More Database terms