我发现一些似乎与这个问题有关系的问题(例如:Why is node.js only processing six requests at a time?),但我仍然无法理解细节。
以下是我的情况。
首先,服务器的代码:
var express = require ('express'),
methodOverride = require('method-override');
var app = express();
app.use(methodOverride());
app.use(function(err, req, res, next) {
console.error(err.stack);
res.status(500);
res.send({ error: err });
});
app.use('/', function(req, res, next) {
res.header('Cache-control', 'no-cache');
res.header('Access-Control-Allow-Origin', '*');
next();
});
app.get('/OK/', function (req, res) {
console.log(getTimestamp() + ' OK ');
res.status(200).send("200");
});
app.listen(22222);
function getTimestamp(){
var timestamp = new Date();
return timestamp.toString() + " " + timestamp.getMilliseconds();
}
console.log(getTimestamp() + ' Sever started!');
然后,客户端的代码:
var http = require('http');
var opt = {
method: "GET",
host: "localhost",
port: 22222,
path: "/OK/",
headers: {
'Cache-control': 'no-cache'
}
};
count = 10;
function request(){
var req = http.request(opt, function (serverFeedback) {
var body = "";
serverFeedback
.on('data',function(){})
.on('end', function () {
console.log(getTimestamp(), "response END", serverFeedback.statusCode, body);
});
});
req.end();
console.log(getTimestamp(), "resuest START");
count--;
if(count > 0){
setTimeout(request, 500);
}
}
request();
function getTimestamp(){
var timestamp = new Date();
return timestamp.toString() + " " + timestamp.getMilliseconds();
}
在节点中运行它们,当然首先运行服务器,客户端将在大约5s内发送10个请求,一切都没问题。像这样:
但是,如果我删除有关在客户端中侦听“data”事件的代码,请执行以下操作:
var req = http.request(opt, function (serverFeedback) {
var body = "";
serverFeedback
//.on('data',function(){}) /* remove the listener*/
.on('end', function () {
console.log(getTimestamp(), "response END", serverFeedback.statusCode, body);
});
});
再次运行,客户端似乎已经在5s内发送了10个请求,但实际上,服务器只收到了5个请求:
如您所见,“结束”事件似乎未触发。
最后,我通过服务器的代码在响应中添加了一个标题:
app.use('/', function(req, res, next) {
res.header('Cache-control', 'no-cache');
res.header('Access-Control-Allow-Origin', '*');
res.header('connection', 'close'); /* add a header about connection */
next();
});
重新启动服务器并再次运行客户端:
现在服务器可以立即收到所有10个请求,但“结束”事件似乎仍未触发。
因此,“data”事件的监听器似乎对http连接产生了一些影响。
任何人都可以解释每个人的详细信息吗?
答案 0 :(得分:0)
首先,当您没有"听取数据事件"时,响应流永远不会完成,因此您所做的http请求永远不会完成。这本质上是一个泄漏。 总是消耗你的流!!! 否则,你的流将会暂停"暂停"无限期地陈述。
第二个是node.js默认使用默认代理http://nodejs.org/api/http.html#http_class_http_agent池连接。现在,它汇集了5个连接,这就是为什么你会看到5个连接的限制。