summaryrefslogtreecommitdiff
path: root/benchmark/streams/writable-manywrites.js
blob: 0ed38d0357a438c997deeaaacb3c750c972c4ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'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();
  for (var k = 0; k < n; ++k) {
    s.write(b);
  }
  bench.end(n);
}