这是官方文档中的一个简单示例:
$ node test-node.js
var cluster = require('cluster');
var http = require('http');
var numCPUs = require('os').cpus().length;
if (cluster.isMaster) {
// Fork workers.
console.log(numCPUs);
for (var i = 0; i < numCPUs-1; i++) {
cluster.fork();
}
cluster.on('exit', function(worker, code, signal) {
console.log('worker ' + worker.process.pid + ' died');
});
} else {
// Workers can share any TCP connection
// In this case its a HTTP server
http.createServer(function(req, res) {
res.writeHead(200);
res.end("hello world\n");
}).listen(8000);
}
这是我在htop中看到的:
有 2 个主进程和两个分叉进程。
为什么?我以为我应该只有 2 个进程!
更新:
这里我在 VM CentOS 上运行:http: //i.stack.imgur.com/GQiiN.png
也许我不明白?