ホームページ > 記事 > ウェブフロントエンド > Node.jsのagent.maxSocketsプロパティ
agent.maxSockets プロパティは、エージェントがソースごとに同時に開くことができるソケットの数を定義します。デフォルトでは、この値は無限大に設定されています。これも「http」モジュールの一部です。
agent.maxSockets: number
上記の関数は次のパラメータを受け入れることができます-
number –この定義により、エージェントが同時に使用できるソケットの数が決まります。デフォルト値は無限大に設定されています。
maxSockets.js という名前のファイルを作成し、次のコード スニペットをコピーします。ファイルを作成した後、次の例に示すように、次のコマンドを使用してこのコードを実行します。
node maxSockets.js
maxSockets.js
// agent.maxSockets method Demo example // Importing the http & agentkeepalive module const http = require('http'); const agent = require('agentkeepalive'); const keepaliveAgent = new agent({ maxSockets: 100, maxFreeSockets: 10, timeout: 60000, // active socket keepalive for 60 seconds freeSocketTimeout: 30000, // free socket keepalive for 30 seconds }); const options = { host: 'tutorialspoint.com', port: 80, path: '/', method: 'GET', agent: keepaliveAgent, }; console.log("Max free sockets: ",keepaliveAgent.maxSockets); console.log('[%s] agent status changed: %j', Date(), keepaliveAgent.getCurrentStatus());
C:\homeode>> node maxSockets.js Max sockets: 100 [Fri Apr 30 2021 12:28:24 GMT+0530 (India Standard Time)] agent status changed: {"createSocketCount":0,"createSocketErrorCount":0,"closeSocketCount":0,"errorS ocketCount":0,"timeoutSocketCount":0,"requestCount":0,"freeSockets":{},"socket s":{},"requests":{}}
以上がNode.jsのagent.maxSocketsプロパティの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。