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.
21 lines
426 B
21 lines
426 B
11 years ago
|
var common = require('../common.js');
|
||
|
var SlowBuffer = require('buffer').SlowBuffer;
|
||
|
|
||
|
var bench = common.createBenchmark(main, {
|
||
|
type: ['fast', 'slow'],
|
||
|
n: [1024]
|
||
|
});
|
||
|
|
||
|
var buf = new Buffer(1024);
|
||
|
var slowBuf = new SlowBuffer(1024);
|
||
|
|
||
|
function main(conf) {
|
||
|
var n = +conf.n;
|
||
|
var b = conf.type === 'fast' ? buf : slowBuf;
|
||
|
bench.start();
|
||
|
for (var i = 0; i < n * 1024; i++) {
|
||
|
b.slice(10, 256);
|
||
|
}
|
||
|
bench.end(n);
|
||
|
}
|