यहां सोर्स कोड देखकर , ऐसा प्रतीत होता है कि आप देख सकते हैं:
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()
कहा जाता है, यह एक नया कनेक्शन बनाएगा।