How can I configure postgresql to use multiple cores in a single machine , is it automatically uses it ?
Tell me more
×
Database Administrators Stack Exchange is a question and answer site for
database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
|
|
PostgreSQL automatically uses multiple cores to support multiple database connections, if you have multiple cores. No further configuration is necessary. |
|||
|
|
|
Postgres allocates one process per client, and, generally speaking you will only see that process go to 100% of 1 of your cores. To increase throughput you need to use more clients/connections. http://www.postgresql.org/docs/8.2/static/connect-estab.html |
|||||
|
