Nodejs Cluster:选择Worker

时间:2014-07-02 23:11:42

标签: javascript node.js cluster-computing web-worker

我使用Nodejs Cluster。我有8名工人。每当我转到应用程序时,我都会连接到同一个worker(这是正常的,因为worker可以处理多个客户端。)

出于测试目的,我想在不必围攻应用程序的情况下连接到不同的工作人员。有没有办法做到这一点?

例如:访问mywebsite.com/3将连接到第3名工作人员。

1 个答案:

答案 0 :(得分:1)

这是一个基于端口的解决方案:

var cluster = require('cluster');
var http = require('http');

if (cluster.isMaster) {

  cluster.fork();
  cluster.fork();
  cluster.fork();

  return;

}


function app (req, res) {
  res.writeHead(200);
  res.end('hello from ' + cluster.worker.id);
}

http.createServer(app).listen(8000);
http.createServer(app).listen(8000 + cluster.worker.id);

例如,如果您希望连接到2工作人员,则使用端口8002。