|
|
|
|
|
by Diggsey
1859 days ago
|
|
You may be right that it's easy to set up, but pgbouncer doesn't help with this problem most of the time. It's a problem that needs to be solved within postgres. There are three pooling modes: - Session pooling. Doesn't help with this issue since it doesn't reduce the total number of required connections. - Transaction pooling / statement pooling. Breaks too many things to be usable. (eg. prepared statements...) See the table at https://www.pgbouncer.org/features.html for what features cannot be used with transaction pooling. |
|
And it works fine on low-resourced machines that I tend to use for everything.