Understanding the NodeJS cluster module (1/4)

added by JavaScript Kicks
9/14/2018 8:58:14 AM

1542 Views

NodeJS processes runs on a single process, which means it does not take advantage from multi-core systems by default. If you have an 8 core CPU and run a NodeJS program via $ node app.js it will run in a single process, wasting the rest of CPUs.


0 comments