这是我关于 Stack-overflow 的第一个问题,所以请原谅我在这个问题中的任何错误或信息不足。
所以,我试图为我的服务器使用nodeJS的集群模块,并通过我的windows机器运行nodeJS。我知道nodeJS在windows中没有任何集群模块的调度策略,所以我已经明确地将scheduling_policy设置为rr,如nodeJS docs所述。但问题是当我试图通过将一名工人置于无限循环中来保持忙碌时;当我们尝试向服务器请求“/”资源时,服务器没有将请求分派给另一个可用且空闲的工作人员。
请帮助我为什么它没有将请求发送给其他工作人员。
var cluster=require('cluster');
if(cluster.isMaster){
var cores=require('os').cpus().length;
console.log("Master Cluster setting up :-"+cores+" workers");
for(var i=0;i<cores;i++)
cluster.fork();
cluster.on('online',(worker)=>{
console.log("Worker with Process ID :- "+worker.process.pid+" online");
});
cluster.on('exit',(worker)=>{
console.log("worker "+worker.process.pid+" died...So setting up a new worker");
cluster.fork();
});
}
else{
var app=require('express')();
app.get('/',(req,res)=>{
console.log("Process with pid "+process.pid+" is handling this request");
while(true);
res.write("Yes!");
res.end();
//while(true);
})
app.listen('3000');
}