0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/benchmark/misc/freelist.js
Ruben Bridgewater 1b6cb94761
benchmark: refactor
PR-URL: https://github.com/nodejs/node/pull/18320
Reviewed-By: James M Snell <jasnell@gmail.com>
2018-02-01 10:49:04 +01:00

39 lines
714 B
JavaScript

'use strict';
const common = require('../common.js');
const bench = common.createBenchmark(main, {
n: [100000]
}, {
flags: ['--expose-internals']
});
function main({ n }) {
const FreeList = require('internal/freelist');
const poolSize = 1000;
const list = new FreeList('test', poolSize, Object);
var j;
const used = [];
// First, alloc `poolSize` items
for (j = 0; j < poolSize; j++) {
used.push(list.alloc());
}
bench.start();
for (var 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);
}