我有一个基于PostgreSQL的Web应用程序,没有任何连接问题。所以我用pgbouncer来解决这个问题。使用pgbouncer它的效果非常好,但我仍然遇到连接限制的问题...... 现在我的postgresql.conf文件包含:
max_connections = 100
shared_buffers = 128MB
#temp_buffers = 8MB
#max_prepared_transactions = 0
#work_mem = 1MB
#maintenance_work_mem = 16MB
#max_stack_depth = 2MB
#temp_file_limit = -1
#max_files_per_process = 1000
#shared_preload_libraries = ''
和我的pgbouncer.ini文件:
pool_mode = session
max_client_conn = 100
default_pool_size = 45
reserve_pool_size = 1
在网站高峰时段仍遇到一些连接限制问题。 你能帮我配置一下这个设置,以便更好地配置。 提前谢谢。