Pg Bouncer
PgBouncer is a lightweight, open-source connection pooler for PostgreSQL that reduces the overhead of establishing new database connections by reusing a smaller pool of persistent connections on behalf of many client applications.
7 resources across 3 libraries
Glossary Terms(2)
ProxySQL
ProxySQL is an open-source, high-performance protocol-aware proxy for MySQL and MySQL-compatible databases that sits between applications and database servers…
PgBouncer
PgBouncer is a lightweight, open-source connection pooler for PostgreSQL that reduces the overhead of establishing new database connections by reusing a smalle…
Study Notes(1)
Interview Questions(4)
What is Connection Pooling?
Connection pooling is a technique where a fixed set of pre-established database connections is reused across multiple requests instead of opening and closing a…
What is Database Connection Multiplexing?
Database connection multiplexing is the technique of sharing a small pool of real database connections across a much larger number of client requests, typicall…
What is Database Connection Pooling and Why Does It Matter?
Database connection pooling is the practice of maintaining a reusable set of pre-established database connections that application threads borrow and return, i…
What Causes Database Connection Storms and How Do You Prevent Them?
A database connection storm happens when a large number of application instances or processes simultaneously attempt to open new database connections, typicall…