forked from nodejs/node-v0.x-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
benchmark: Add a test to measure Buffer.slice method
See nodejs#7633
- Loading branch information
Raymond Feng
committed
May 23, 2014
1 parent
1bbb3cc
commit 24142b4
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
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); | ||
} |