node 中的 node-mysql 大家是保持长连接还是短连接?


就是这个:


 $ npm install mysql

这个模块。在使用的时候,是从项目进程一开始就 connect 然后直到关闭整个进程结束保持长连接呢,还是说到特定要查询的时刻才 connect 一下然后查询完毕马上 end 呢?

node.js node-mysql mysql

神&草泥马 10 years, 5 months ago

短连接
目前在翻译这个文档,里面提到了。你每次query之后都需要end

到处逛着玩儿 answered 10 years, 5 months ago

Your Answer