PoolKey
A unique identifier for a connection pool instance.
PoolKey: TypeAlias = tuple[BackendName, str, int]
The triple (backend, host, port) distinguishes pools that target different servers. Two calls to get_connection() with the same pool key reuse the same underlying pool.