postgresql – node-postgres:设置最大连接池大小

前端之家收集整理的这篇文章主要介绍了postgresql – node-postgres:设置最大连接池大小前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在设置最大连接池大小时,我找不到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实例时使用.

原文链接:https://www.f2er.com/postgresql/192123.html

猜你在找的Postgre SQL相关文章