mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 19:48:12 +00:00

Incrementally making `require('../common')` less of a monolith. Move the `common.onGC()` utility to a separate standalone module that is only imported when it's actually needed. PR-URL: https://github.com/nodejs/node/pull/22446 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Weijia Wang <starkwang@126.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
61 lines
1.1 KiB
JavaScript
61 lines
1.1 KiB
JavaScript
'use strict';
|
|
// Flags: --expose-gc
|
|
// just like test-gc-http-client.js,
|
|
// but aborting every connection that comes in.
|
|
|
|
require('../common');
|
|
const onGC = require('../common/ongc');
|
|
|
|
function serverHandler(req, res) {
|
|
res.connection.destroy();
|
|
}
|
|
|
|
const http = require('http');
|
|
const todo = 500;
|
|
let done = 0;
|
|
let count = 0;
|
|
let countGC = 0;
|
|
|
|
console.log(`We should do ${todo} requests`);
|
|
|
|
const server = http.createServer(serverHandler);
|
|
server.listen(0, getall);
|
|
|
|
function getall() {
|
|
if (count >= todo)
|
|
return;
|
|
|
|
(function() {
|
|
function cb(res) {
|
|
done += 1;
|
|
}
|
|
|
|
const req = http.get({
|
|
hostname: 'localhost',
|
|
pathname: '/',
|
|
port: server.address().port
|
|
}, cb).on('error', cb);
|
|
|
|
count++;
|
|
onGC(req, { ongc });
|
|
})();
|
|
|
|
setImmediate(getall);
|
|
}
|
|
|
|
for (let i = 0; i < 10; i++)
|
|
getall();
|
|
|
|
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();
|
|
}
|