gpt4 book ai didi

node.js - node-mysql2 使用 conn.release() 与 conn.end()

转载 作者:搜寻专家 更新时间:2023-10-31 23:52:13 26 4
gpt4 key购买 nike

在此处查看 Async/Await 示例:

https://github.com/sidorares/node-mysql2/blob/master/documentation/Promise-Wrapper.md

作者使用c.end()

   let mysql = require('mysql2/promise');
let pool = mysql.createPool({database: test});
// execute in parallel, next console.log in 3 seconds
await Promise.all([pool.query('select sleep(2)'), pool.query('select sleep(3)')]);
console.log('3 seconds after');
await pool.end();
await conn.end();

然而,就在上面几行,他使用了conn.release()

pool.getConnection()
.then((conn) => {
var res = conn.query('select foo from bar');
conn.release();
return res;
})

连接对象用完后要用什么?

应该是 conn.release() 还是 conn.end() ?

最佳答案

这些例子并不意味着做同样的事情。而且,第一个示例(在您的代码中)引用了一个它从未使用过的变量 (conn)。我认为这只是示例代码中的一个错误。

第一个示例展示了如何创建池、运行两个并发查询(使用池)、等待所有查询完成,然后进行清理。正如我之前所说,conn.end() 在那里没有任何意义。

第二个示例向您展示了如何从池中请求一个空闲连接,使用该连接运行查询(由 promise res 表示),将连接返回到池中(通过调用 conn.release()),然后将结果传播到 promise 链中。

第二个例子可以重写为:

let conn = await pool.getConnection();
let res = conn.query('select foo from bar');

conn.release();

let result = await res;

因此,conn.release() 用于将连接释放回连接池。它不会关闭连接,只是使其可用于其他查询。

conn.end() (我假设)关闭连接,我想你应该只在你自己明确创建连接时调用它(不像从池中检索的连接,它应该是 < em>由池管理)。

关于node.js - node-mysql2 使用 conn.release() 与 conn.end(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39752267/

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