Search code examples
ruby-on-railspostgresqlrails-postgresql

Does Postgres have native connection pooling like mysql?


I ask because in Rails (config/database.yml) you can specify a pool size.

What does Postgres do with that?


Solution

  • That pool size is for the connection pool built into Rails postgresql does not ship with connection pooling. If you need an external connection pool search for pgbouncer or pgpool II