0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 15:06:33 +01:00
nodejs/benchmark/streams/writable-manywrites.js
Robert Nagy ea86f8c902 benchmark: update manywrites back pressure
Make manywrites benchmark a bit more realistic by
taking back pressure into account. Otherwise
memory usage would no correspond well with
real world usage.

PR-URL: https://github.com/nodejs/node/pull/30977
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2019-12-17 17:36:31 -08:00

33 lines
574 B
JavaScript

'use strict';
const common = require('../common');
const Writable = require('stream').Writable;
const bench = common.createBenchmark(main, {
n: [2e6],
sync: ['yes', 'no']
});
function main({ n, sync }) {
const b = Buffer.allocUnsafe(1024);
const s = new Writable();
sync = sync === 'yes';
s._write = function(chunk, encoding, cb) {
if (sync)
cb();
else
process.nextTick(cb);
};
bench.start();
let k = 0;
function run() {
while (k++ < n && s.write(b));
if (k >= n)
bench.end(n);
}
s.on('drain', run);
run();
}