Skip to content

Instantly share code, notes, and snippets.

@benfoxall
Created October 12, 2016 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benfoxall/7bc97589b97300ef4d001b4a3a8e84f3 to your computer and use it in GitHub Desktop.
Save benfoxall/7bc97589b97300ef4d001b4a3a8e84f3 to your computer and use it in GitHub Desktop.
Cluster wrapper thing
var cluster = require('cluster');
var http = require('http');
var numCPUs = require('os').cpus().length;
if (cluster.isMaster) {
// Fork workers.
for (var i = 0; i < numCPUs; i++) {
cluster.fork();
}
cluster.on('exit', function(worker, code, signal) {
console.log('worker ' + worker.process.pid + ' died');
});
} else {
// Workers can share any TCP connection
// In this case its a HTTP server
require('./server')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment