我有一个电子应用程序,带有一个模块,我需要在其中向一个安静的端点发送多个(5000)个连续请求。从浏览器窗口测试对该端点的连续请求会产生 80 毫秒的响应时间,但现在我需要在 Electron 端(Node.js)中实现它,并且当我使用下面的代码运行 100 个请求的测试时,响应时间不少于 500 毫秒,并且随着我发送的更多而增加。
我也用 Axios 对此进行了测试,响应时间相同(> 500ms)。
testHttp() {
const buffer = Buffer.alloc(5 * 1024, 1);
const agent = new https.Agent({
keepAlive: true
});
agent.maxSockets = 1000000;
const post_options = {
hostname: this.baseUrl.substr(8),
path: '/status/welcome',
method: 'POST',
port: 443,
agent: agent,
headers: {}
};
for (let i = 0; i < 100; i++) {
// Set up the request
let prepTime = 0;
const post_req = https.request(post_options, function (res) {
let rawResponse = '';
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log(post_req.reusedSocket);
rawResponse += chunk;
});
res.on('end', () => {
try {
const parsedData = JSON.parse(rawResponse);
console.log('Time Elapsed for Status Welcome : ' + (new Date().getTime() - prepTime) + ' ms');
} catch (e) {
console.error(e.message);
}
});
});
// post the data
prepTime = new Date().getTime();
post_req.write(buffer);
post_req.end();
}
}