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.
26 lines
528 B
26 lines
528 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
const Readable = require('stream').Readable;
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [200e1],
|
|
type: ['string', 'buffer']
|
|
});
|
|
|
|
function main(conf) {
|
|
const n = +conf.n;
|
|
const s = new Readable();
|
|
var data = 'a'.repeat(32);
|
|
if (conf.type === 'buffer')
|
|
data = Buffer.from(data);
|
|
s._read = function() {};
|
|
|
|
bench.start();
|
|
for (var k = 0; k < n; ++k) {
|
|
for (var i = 0; i < 1e4; ++i)
|
|
s.push(data);
|
|
while (s.read(32));
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|