Node.js agent.maxSockets 方法
Node.js HTTP API 是低级的,因此它可以支持 HTTP 应用程序。为了访问和使用 HTTP 服务器和客户端,我们需要调用它们(通过 ' require('http') ')。 HTTP 消息头以 JSON 格式表示。
agent.maxSockets (在 v0.3.6 中添加)方法是“ Http ”模块的内置应用程序编程接口,它确定代理可以在每个源中打开多少个并发套接字。 Origin 是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