Bằng cách xem mã nguồn tại đây , có vẻ như bạn có thể xem:
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
Lưu ý:Các kết nối mới được tạo khi cần thiết với kích thước tối đa của nhóm nên _freeConnections.length
có thể bằng 0, nhưng có nhiều kết nối hơn trong giới hạn nên lần sau .getConnection()
được gọi, nó sẽ tạo một kết nối mới.