Created
May 22, 2012 15:08
-
-
Save rogeriopvl/2769653 to your computer and use it in GitHub Desktop.
Node cluster sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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