pm25
Version:
Production process manager for Node.JS applications with a built-in load balancer.
27 lines (20 loc) • 512 B
JavaScript
var obj = {};
var i = 0;
var http = require('http');
http.createServer(function(req, res) {
res.writeHead(200);
res.end('hey');
}).listen(8000);
process.on('message', function(msg) {
if (msg == 'shutdown') {
console.log('Closing all connections...');
setTimeout(function() {
console.log('Finished closing connections');
process.exit(0);
}, 100);
}
});
setInterval(function() {
obj[i] = Array.apply(null, new Array(99999)).map(String.prototype.valueOf,"hi");
i++;
}, 2);