每次查询数据库时都需要使用 pg.connect() 吗?查看 githhub 页面和 wiki 后,示例显示 pg.connect 回调中的查询,如下所示(评论来自 github 示例,我没有写)
//this initializes a connection pool
//it will keep idle connections open for a (configurable) 30 seconds
//and set a limit of 20 (also configurable)
pg.connect(conString, function(err, client, done) {
if(err) {
return console.error('error fetching client from pool', err);
}
client.query('SELECT $1::int AS number', ['1'], function(err, result) {
//call `done()` to release the client back to the pool
done();
if(err) {
return console.error('error running query', err);
}
console.log(result.rows[0].number);
//output: 1
});
});
这些评论令人困惑,因为听起来 pg.connect() 正在为每个调用创建一个新的客户端池,这显然是低效的。我在文档中看到了创建客户端的其他示例,但我想使用客户端池。