यदि आप बंद कर रहे हैं तो आप एक Ctrl+C
. के साथ node.js ऐप हैं आदेश, आप अपने कनेक्शन पूल को SIGINT
पर बंद कर सकते हैं
घटना:
process.on('SIGINT', function() {
mysqlPool.end(function (err) {
/* Since you're overriding the default behavior of SIGINT,
you have to force your app to exit. You can pass it as
a callback to the end() function. */
process.exit(0);
});
});
लेकिन आप सर्वर वैरिएबल wait_timeout
और/या interactive_timeout
कोड>
।
यह आपको तय करना है कि आपकी आवश्यकताओं के लिए सबसे उपयुक्त क्या है।