summaryrefslogtreecommitdiff
path: root/benchmark/http/chunked.js
blob: 52b4605715c3225806cda986ba6813c310a8ce14 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// When calling .end(buffer) right away, this triggers a "hot path"
// optimization in http.js, to avoid an extra write call.
//
// However, the overhead of copying a large buffer is higher than
// the overhead of an extra write() call, so the hot path was not
// always as hot as it could be.
//
// Verify that our assumptions are valid.
'use strict';

const common = require('../common.js');

const bench = common.createBenchmark(main, {
  n: [1, 4, 8, 16],
  len: [1, 64, 256],
  c: [100]
});

function main({ len, n, c }) {
  const http = require('http');
  const chunk = Buffer.alloc(len, '8');

  const server = http.createServer((req, res) => {
    function send(left) {
      if (left === 0) return res.end();
      res.write(chunk);
      setTimeout(() => {
        send(left - 1);
      }, 0);
    }
    send(n);
  });

  server.listen(common.PORT, () => {
    bench.http({
      connections: c
    }, () => {
      server.close();
    });
  });
}