Technology

Clustering in Node.js

Node.js is single threaded so it runs one process on a single CPU, as the power of Node.js is its performance and speed it doesn't seem good to use only one CPU in a multi-core system. For utilizing all the CPUs, Node.js allows us to create a network of processes that all shares the same port. Create a file named clusterExample.js ...

by Shreyance Jain
Tag: CPU
25-Feb-2013