recall

← recall

connection pool term

reusable set of pre-opened DB/HTTP connections

Opening connections is expensive; pools amortize cost. But pool size is a critical limit — too small = contention, too large = downstream saturation. Pool size × replicas should never exceed DB max_connections.

topics: concurrency, databases

references: