Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Created May 22, 2012 15:08
Show Gist options
  • Save rogeriopvl/2769653 to your computer and use it in GitHub Desktop.
Save rogeriopvl/2769653 to your computer and use it in GitHub Desktop.
Node cluster sample
var cluster = require('cluster'),
http = require('http'),
numCPUS = require('os').cpus().length;
if (cluster.isMaster){
for (var i=0; i< numCPUS; i++){
cluster.fork();
}
cluster.on('death', function(worker){
console.log('Worker ' + worker.pid + ' died. Bringing another one up!');
cluster.fork();
});
}
else{
http.Server(function(req, res) {
res.writeHead(200);
res.end(process.env.NODE_WORKER_ID + ": hello world\n");
}).listen(8000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment