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.
35 lines
838 B
35 lines
838 B
'use strict';
|
|
const common = require('../common.js');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
method: ['offset', 'slice'],
|
|
size: [16, 512, 1024, 4096, 16386],
|
|
millions: [1]
|
|
});
|
|
|
|
function compareUsingSlice(b0, b1, len, iter) {
|
|
var i;
|
|
bench.start();
|
|
for (i = 0; i < iter; i++)
|
|
Buffer.compare(b0.slice(1, len), b1.slice(1, len));
|
|
bench.end(iter / 1e6);
|
|
}
|
|
|
|
function compareUsingOffset(b0, b1, len, iter) {
|
|
var i;
|
|
bench.start();
|
|
for (i = 0; i < iter; i++)
|
|
b0.compare(b1, 1, len, 1, len);
|
|
bench.end(iter / 1e6);
|
|
}
|
|
|
|
function main(conf) {
|
|
const iter = (conf.millions >>> 0) * 1e6;
|
|
const size = (conf.size >>> 0);
|
|
const method =
|
|
conf.method === 'slice' ? compareUsingSlice : compareUsingOffset;
|
|
method(Buffer.alloc(size, 'a'),
|
|
Buffer.alloc(size, 'b'),
|
|
size >> 1,
|
|
iter);
|
|
}
|
|
|