mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
694 B
38 lines
694 B
'use strict';
|
|
|
|
var common = require('../common.js');
|
|
var FreeList = require('internal/freelist').FreeList;
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
n: [100000]
|
|
});
|
|
|
|
function main(conf) {
|
|
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();
|
|
|
|
for (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);
|
|
}
|
|
|