What is the difference between the Node.js' cluster module and the Learnboost Cluster module?

Node.js itself has a main module called Cluster (ref: http://nodejs.org/docs/v0.8.3/api/cluster.html ), and Learnboost released a module that is also called Cluster (ref: http: // learnboost.github.com/cluster/ https://github.com/LearnBoost/cluster ).

How are these two comparisons? Are they connected in some way?

+6
source share
2 answers

Nick Hagianis alredy said the cluster module node.js has been temporarily removed. As far as I can see, the LearnBoost cluster module is not actively developing. The list of LearnBoost module issues is quite long.

The LearnBoost module has some features like restart with zero downtime, which the internal module does not offer. But I'm not sure if it still works with current versions (0.8.x) node. If you need similar features, you can take a look at the Forever tool.

+3
source
+1
source

Source: https://habr.com/ru/post/921156/


All Articles