Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions benchmark/misc/freelist.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
'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);
}
2 changes: 1 addition & 1 deletion lib/internal/freelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exports.FreeList = function(name, max, constructor) {


exports.FreeList.prototype.alloc = function() {
return this.list.length ? this.list.shift() :
return this.list.length ? this.list.pop() :
this.constructor.apply(this, arguments);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can also be changed to simply this.constructor(); for an additional speed increase since http is the only module that uses FreeList and http just passes in a factory function with no parameters as its "constructor."

};

Expand Down
4 changes: 2 additions & 2 deletions test/parallel/test-freelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ assert.strictEqual(flist1.free('test4'), false);
assert.strictEqual(flist1.free('test5'), false);

// At this point 'alloc' should just return the stored values
assert.strictEqual(flist1.alloc(), 'test1');
assert.strictEqual(flist1.alloc(), 'test2');
assert.strictEqual(flist1.alloc(), 'test3');
assert.strictEqual(flist1.alloc(), 'test2');
assert.strictEqual(flist1.alloc(), 'test1');