ここのソースコード を見てください 、次のように表示されます:
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
注:プールの最大サイズまで、必要に応じて新しい接続が作成されるため、_freeConnections.length
ゼロになる可能性がありますが、制限にはさらに多くの接続があるため、次回は.getConnection()
が呼び出されると、新しい接続が作成されます。