We need a connection pool or something so that we can execute multiple requests in parallel. We support a pool_size attribute on the Postgres adapter to be compatible with the MongoDB adapter, but we could pass that along.
Rather than letting Postgres talk directly to a Connection, we should probably have it talk to a ConnectionPool and let that object pass the query to the first available Connection.
We need a connection pool or something so that we can execute multiple requests in parallel. We support a
pool_size
attribute on the Postgres adapter to be compatible with the MongoDB adapter, but we could pass that along.Rather than letting
Postgres
talk directly to aConnection
, we should probably have it talk to aConnectionPool
and let that object pass the query to the first availableConnection
.