Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como obter o número de conexões não utilizadas/usadas no pool de conexões mysql do nodejs?


Observando o código-fonte aqui , parece que você pode ver:
pool.config.connectionLimit     // passed in max size of the pool
pool._freeConnections.length    // number of free connections awaiting use
pool._allConnections.length     // number of connections currently created, including ones in use
pool._acquiringConnections.length // number of connections in the process of being acquired

Observação:novas conexões são criadas conforme necessário até o tamanho máximo do pool, portanto, _freeConnections.length poderia ser zero, mas há muito mais conexões no limite, então da próxima vez .getConnection() for chamado, ele criará uma nova conexão.