mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
87ea0caa9f
Calling `global.gc()` in multiple places leads to unreliability. Call it in the interval only. PR-URL: https://github.com/nodejs/node/pull/23145 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
60 lines
1.1 KiB
JavaScript
60 lines
1.1 KiB
JavaScript
'use strict';
|
|
// Flags: --expose-gc
|
|
// just a simple http server and client.
|
|
|
|
const common = require('../common');
|
|
const onGC = require('../common/ongc');
|
|
|
|
function serverHandler(req, res) {
|
|
res.writeHead(200, { 'Content-Type': 'text/plain' });
|
|
res.end('Hello World\n');
|
|
}
|
|
|
|
const http = require('http');
|
|
const todo = 300;
|
|
let done = 0;
|
|
let count = 0;
|
|
let countGC = 0;
|
|
|
|
console.log(`We should do ${todo} requests`);
|
|
|
|
const server = http.createServer(serverHandler);
|
|
server.listen(0, common.mustCall(() => {
|
|
for (let i = 0; i < 15; i++)
|
|
getall();
|
|
}));
|
|
|
|
function getall() {
|
|
if (count === todo)
|
|
return;
|
|
|
|
const req = http.get({
|
|
hostname: 'localhost',
|
|
pathname: '/',
|
|
port: server.address().port
|
|
}, cb);
|
|
|
|
count++;
|
|
onGC(req, { ongc });
|
|
|
|
setImmediate(getall);
|
|
}
|
|
|
|
function cb(res) {
|
|
res.resume();
|
|
done += 1;
|
|
}
|
|
|
|
function ongc() {
|
|
countGC++;
|
|
}
|
|
|
|
setInterval(status, 100).unref();
|
|
|
|
function status() {
|
|
global.gc();
|
|
console.log('Done: %d/%d', done, todo);
|
|
console.log('Collected: %d/%d', countGC, count);
|
|
if (countGC === todo) server.close();
|
|
}
|