根据这个答案:
您应该在一个机器上运行多个节点服务器,每个核心 1 个,并在它们之间拆分请求流量。这提供了出色的 CPU 关联性,并且将随核心数几乎线性地扩展吞吐量。
明白了,为了简单起见,假设我们的盒子有 2 个内核。
我需要一个完整的示例,一个Hello World
使用 NGINX 在两个节点服务器之间进行负载平衡的应用程序。
这也应该包括任何 NGINX 配置。
应用程序.js
var http = require('http');
var port = parseInt(process.argv[2]);
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(port);
console.log('Server running at http://localhost:' + port + '/');
nginx配置
upstream app {
server localhost:8001;
server localhost:8002;
}
server {
location / {
proxy_pass http://app;
}
}
启动您的应用程序
node app.js 8001
node app.js 8002
附加阅读材料