当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js agent.maxSockets用法及代码示例


Node.js HTTP API是低级的,因此它可以支持HTTP应用程序。为了访问和使用HTTP服务器和客户端,我们需要调用它们(通过“ require(‘http’)”)。 HTTP消息头表示为JSON格式。

agent.maxSockets(在v0.3.6中添加)方法是Http模块的内置应用程序编程接口,该接口确定代理每个源可以打开多少个并发套接字。源是agent.getName()的返回值。

为了获得响应和正确的结果,我们需要导入‘http’模块。

导入:

const http = require('http');

用法:



agent.maxSockets;

参数:如上所述,该函数不接受任何参数。

返回值<number>:默认情况下,它设置为Infinity。它确定每个原始代理可以打开多少个并发套接字。

以下示例说明了Node.js中agent.maxSockets方法的用法。

范例1: 文件名:index.js

// Node.js program to demonstrate the  
// agent.maxSockets method  
  
// Importing http module  
const http = require('http'); 
   
// Importing agentkeepalive module  
const Agent = require('agentkeepalive');  
  
// Creating new agent  
const keepAliveAgent = new Agent({});  
  
console.log(keepAliveAgent.maxSockets); 
  
// Options object  
const options = {  
  host:'geeksforgeeks.org',  
  port:80,  
  path:'/',  
  method:'GET',  
  agent:keepAliveAgent,  
};  
  
// Requesting via http server module  
const req = http.request(options, (res) => {  
  // Printing statuscode  
  console.log("StatusCode:", res.statusCode);  
});  
  
req.end(); 

使用以下命令运行index.js文件:

node index.js

Output:

Infinity

StatusCode: 301

参考: https://nodejs.org/api/http.html#http_agent_maxsockets

相关用法


注:本文由纯净天空筛选整理自vikas_g大神的英文原创作品 Node.js agent.maxSockets Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。