我正在使用nodeJs连接池,使用npm的“mysql”模块.
在创建池时,我已将connectionlimit指定为100.
我想知道在运行时有多少个连接在池中使用/未使用.最佳答案通过查看the source code here,您可以看到:
pool.config.connectionlimit // passed in max size of the poolpool._freeConnections.length // number of free connections awaiting usepool._allConnections.length // number of connections currently created,including ones in usepool._acquiringConnections.length // number of connections in the process of being acquired
注意:根据需要创建新连接,直到池的最大大小,因此_freeConnections.length可能为零,但是限制中有更多连接,因此下次调用.getConnection()时,它将创建一个新连接. 总结
以上是内存溢出为你收集整理的如何在nodejs mysql连接池中获取未使用/已使用的连接数?全部内容,希望文章能够帮你解决如何在nodejs mysql连接池中获取未使用/已使用的连接数?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)