Skip to content

Instantly share code, notes, and snippets.

@danvitoriano
Created December 1, 2019 00:25
Show Gist options
  • Save danvitoriano/2c94eb294c88ec003015c92d3f3f9fa4 to your computer and use it in GitHub Desktop.
Save danvitoriano/2c94eb294c88ec003015c92d3f3f9fa4 to your computer and use it in GitHub Desktop.
maquinaDeCoca.js
Const cluster = require(‘cluster’);
If (cluster.isMaster) {
Console.log(‘ master ${process.pid} ${cluster.isMaster});
Cluster.fork();
} else {
Console.log(‘ master ${process.pid} ${cluster.isWorker});
Process.exit(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment