如何在node.js中使用HTTP keep-alive发送连续请求?

时间:2012-06-05 10:46:10

标签: http node.js client keep-alive

我正在使用node.js 0.6.18,以下代码使node.js关闭每两个请求之间的TCP连接(在Linux上用strace验证)。如何让node.js为多个HTTP请求重用相同的TCP连接(即保持活动状态)?请注意,网络服务器能够保持活力,它可以与其他客户端一起使用。 Web服务器返回一个分块的HTTP响应。

var http = require('http');
var cookie = 'FOO=bar';
function work() {
  var options = {
      host: '127.0.0.1',
      port: 3333,
      path: '/',
      method: 'GET',
      headers: {Cookie: cookie},
  };
  process.stderr.write('.')
  var req = http.request(options, function(res) {
    if (res.statusCode != 200) {
      console.log('STATUS: ' + res.statusCode);
      console.log('HEADERS: ' + JSON.stringify(res.headers));
      process.exit(1)
    }
    res.setEncoding('utf8');
    res.on('data', function (chunk) {});
    res.on('end', function () { work(); });
  });
  req.on('error', function(e) {
    console.log('problem with request: ' + e.message);
    process.exit(1);
  });
  req.end();
}
work()

2 个答案:

答案 0 :(得分:10)

我能够通过创建http.Agent并将其maxSockets属性设置为1来使其工作(通过strace验证)。我不知道这是否是理想的方法;但是,它确实符合要求。我注意到的一件事是,文档声称的关于http.Agent行为的内容并没有准确地描述它在实践中是如何运作的。代码如下:

var http = require('http');
var cookie = 'FOO=bar';
var agent = new http.Agent;
agent.maxSockets = 1;

function work() {
  var options = {
      host: '127.0.0.1',
      port: 3000,
      path: '/',
      method: 'GET',
      headers: {Cookie: cookie},
      agent: agent
  };
  process.stderr.write('.')
  var req = http.request(options, function(res) {
    if (res.statusCode != 200) {
      console.log('STATUS: ' + res.statusCode);
      console.log('HEADERS: ' + JSON.stringify(res.headers));
      process.exit(1)
    }
    res.setEncoding('utf8');
    res.on('data', function (chunk) {});
    res.on('end', function () { work(); });
  });
  req.on('error', function(e) {
    console.log('problem with request: ' + e.message);
    process.exit(1);
  });
  req.end();
}
work()
编辑:我应该补充一点,我使用node.js v0.8.7

进行了测试

答案 1 :(得分:2)

你可以设置:

http.globalAgent.keepAlive = true