Last active

Embed URL

HTTPS clone URL

SSH clone URL

You can clone with HTTPS or SSH.

Download Gist

Node.js, The Bad Parts

View node-cluster.js
1 2 3 4 5 6 7 8 9 10
var cluster = require('cluster');
var cpus = require('os').cpus().length;
 
if (cluster.isMaster) {
// Fork workers.
for (var i = 0; i < cpus; i++) {
cluster.fork();
}
}
// ....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.