Cluster

suggest change

The cluster module allows one to start the same application multiple times.

Clustering is desirable when the different instances have the same flow of execution and don’t depend on one another. In this scenario, you have one master that can start forks and the forks (or children). The children work independently and have their one space of Ram and Event Loop.

Setting up clusters can be beneficial for websites / APIs. Any thread can serve any customer, as it doesn’t depend on other threads. A Database (like Redis) would be used to share Cookies, as variables can’t be shared! between the threads.

// runs in each instance
var cluster = require('cluster');
var numCPUs = require('os').cpus().length;

console.log('I am always called');

if (cluster.isMaster) {
    // runs only once (within the master);
    console.log('I am the master, launching workers!');
    for(var i = 0; i < numCPUs; i++) cluster.fork();

} else {
    // runs in each fork
    console.log('I am a fork!');
  
    // here one could start, as an example, a web server
  
}

console.log('I am always called as well');

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Multi-threading:
* Cluster

Table Of Contents
1 npm
41 cli
43 grunt
59 Hack
64 ES6
67 Redis
69 MongoDB
86 MongoDB
87 Lodash
91 CORS
105 N-API
106 Multi-threading
108 Require