Node.js
ग्रेसफुल शटडाउन
खोज…
ग्रेसफुल शटडाउन - SIGTERM
Server.close () और process.exit () का उपयोग करके, हम सर्वर अपवाद को पकड़ सकते हैं और एक सुंदर शटडाउन कर सकते हैं।
var http = require('http');
var server = http.createServer(function (req, res) {
setTimeout(function () { //simulate a long request
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}, 4000);
}).listen(9090, function (err) {
console.log('listening http://localhost:9090/');
console.log('pid is ' + process.pid);
});
process.on('SIGTERM', function () {
server.close(function () {
process.exit(0);
});
});
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow