2016-01-26 13:13:12 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var common = require('../common.js');
|
|
|
|
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
|
|
n: [100000]
|
|
|
|
});
|
|
|
|
|
|
|
|
function main(conf) {
|
2016-09-16 12:31:22 +02:00
|
|
|
// Using internal/freelist requires node to be run with --expose_internals
|
|
|
|
// switch. common.js will do that when calling main(), so we require
|
|
|
|
// this module here
|
|
|
|
const FreeList = require('internal/freelist').FreeList;
|
2016-01-26 13:13:12 +01:00
|
|
|
var n = conf.n;
|
|
|
|
var poolSize = 1000;
|
|
|
|
var list = new FreeList('test', poolSize, Object);
|
|
|
|
var i;
|
|
|
|
var j;
|
|
|
|
var used = [];
|
|
|
|
|
|
|
|
// First, alloc `poolSize` items
|
|
|
|
for (j = 0; j < poolSize; j++) {
|
|
|
|
used.push(list.alloc());
|
|
|
|
}
|
|
|
|
|
|
|
|
bench.start();
|
|
|
|
|
2016-03-02 22:38:23 +01:00
|
|
|
for (i = 0; i < n; i++) {
|
2016-01-26 13:13:12 +01:00
|
|
|
// 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);
|
|
|
|
}
|