Skip to content

Latest commit

 

History

History
14 lines (6 loc) · 413 Bytes

nodejs-cluster.md

File metadata and controls

14 lines (6 loc) · 413 Bytes

nodejs-cluster

nodejs-cluster fork

nodejs-cluster statistics

(1)各个worker进程统计自己的请求数。并通过IPC进程间通信发送给master进程;
(2)master进程收集worker的统计信息,累加统计;

Nginx做多机器集群上的负载均衡,然后用Node.js Cluster来实现单机多进程上的负载均衡。