Skip to content

Commit

Permalink
benchmark: manywrites back pressure
Browse files Browse the repository at this point in the history
Make manywrites benchmark a bit more realistic by
taking back pressure into account. Otherwise
memory usage would no correspond well with
real world usage.
  • Loading branch information
ronag committed Dec 15, 2019
1 parent 76cbb66 commit b06f8fe
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions benchmark/streams/writable-manywrites.js
Expand Up @@ -20,8 +20,13 @@ function main({ n, sync }) {
};

bench.start();
for (var k = 0; k < n; ++k) {
s.write(b);

let k = 0;
function run() {
while (k++ < n && s.write(b));
if (k >= n)
bench.end(n);
}
bench.end(n);
s.on('drain', run);
run();
}

0 comments on commit b06f8fe

Please sign in to comment.