En regardant le code source ici , il semble que vous puissiez regarder :
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
Remarque :de nouvelles connexions sont créées selon les besoins jusqu'à la taille maximale du pool, donc _freeConnections.length
pourrait être zéro, mais il y a beaucoup plus de connexions dans la limite donc la prochaine fois .getConnection()
est appelé, il créera une nouvelle connexion.