summaryrefslogtreecommitdiff
path: root/benchmark/streams/writable-manywrites.js
blob: 6fcb07e849d615fc6117b05dbade871f0322b1d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use strict';

const common = require('../common');
const Writable = require('stream').Writable;

const bench = common.createBenchmark(main, {
  n: [2e6]
});

function main({ n }) {
  const b = Buffer.allocUnsafe(1024);
  const s = new Writable();
  s._write = function(chunk, encoding, cb) {
    cb();
  };

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