gpt4 book ai didi

postgresql - Node postgres : Setting max connection pool size

转载 作者:搜寻专家 更新时间:2023-10-31 22:20:00 25 4
gpt4 key购买 nike

我找不到关于设置最大连接池大小的 node-postgres 驱动器的任何文档,如果它不可配置,甚至找不到它是什么。有谁知道我如何设置最大连接数,或者默认设置是多少?

最佳答案

默认值定义在 node-postgres/lib/defaults https://github.com/brianc/node-postgres/blob/master/lib/defaults.js

poolSize 默认设置为 10,0 将禁用任何池。

var pg = require('pg');
pg.defaults.poolSize = 20;

请注意,池仅在使用 connect 方法时使用,而不是在直接启动 Client 实例时使用。

关于postgresql - Node postgres : Setting max connection pool size,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10212796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com