↧
Answer by robertklep for How does connectionLimit work in node mysql?
Is this like so or something else?It's something else.If connectionLimit is 10, the maximum number of connections that the driver will make to the database is 10.Assuming the default driver options, if...
View ArticleHow does connectionLimit work in node mysql?
I quite don't understand how connectionLimit in mysql module works.I have created a connectionPool in following way: var connPool = mysql.createPool({ host: config.get('database.host'), user:...
View Article