mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
806a516851
PR-URL: https://github.com/nodejs/node/pull/46474 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
41 lines
773 B
JavaScript
41 lines
773 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [100000],
|
|
}, {
|
|
flags: ['--expose-internals'],
|
|
});
|
|
|
|
function main({ n }) {
|
|
let FreeList = require('internal/freelist');
|
|
if (FreeList.FreeList)
|
|
FreeList = FreeList.FreeList;
|
|
const poolSize = 1000;
|
|
const list = new FreeList('test', poolSize, Object);
|
|
let j;
|
|
const used = [];
|
|
|
|
// First, alloc `poolSize` items
|
|
for (j = 0; j < poolSize; j++) {
|
|
used.push(list.alloc());
|
|
}
|
|
|
|
bench.start();
|
|
|
|
for (let i = 0; i < n; i++) {
|
|
// Return all the items to the pool
|
|
for (j = 0; j < poolSize; j++) {
|
|
list.free(used[j]);
|
|
}
|
|
|
|
// Re-alloc from pool
|
|
for (j = 0; j < poolSize; j++) {
|
|
list.alloc();
|
|
}
|
|
}
|
|
|
|
bench.end(n);
|
|
}
|