node/benchmark
James M Snell b095e35f1f
http2: improve http2 code a bit
Multiple general improvements to http2 internals for
readability and efficiency

[This backport applied to v10.x cleanly but had several
merge conflicts on v8.x.]

PR-URL: https://github.com/nodejs/node/pull/23984
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2019-08-15 17:31:01 +01:00
..
arrays benchmark: var to const 2017-09-21 08:22:19 -07:00
assert benchmark: remove redundant + 2018-02-27 01:00:23 -05:00
async_hooks async_hooks: add destroy event for gced AsyncResources 2018-01-19 13:13:49 -05:00
buffers benchmark: var to const 2017-09-21 08:22:19 -07:00
child_process benchmark: var to const 2017-09-21 08:22:19 -07:00
cluster benchmark: var to const 2017-09-21 08:22:19 -07:00
crypto benchmark: var to const 2017-09-21 08:22:19 -07:00
dgram benchmark: var to const 2017-09-21 08:22:19 -07:00
dns benchmark: fix issues in dns benchmark 2017-09-12 03:17:17 +02:00
domain benchmark: var to const 2017-09-21 08:22:19 -07:00
es test: add benchmark tests for es 2017-10-17 23:28:26 -07:00
events benchmark: var to const 2017-09-21 08:22:19 -07:00
fixtures benchmark: fix http/simple.js benchmark 2017-12-20 22:35:17 +00:00
fs benchmark: fix timeout in write-stream-throughput 2018-01-24 00:59:17 -08:00
http async_hooks: add missing async_hooks destroys in AsyncReset 2018-11-04 12:35:10 +00:00
http2 http2: improve http2 code a bit 2019-08-15 17:31:01 +01:00
misc async_hooks: add missing async_hooks destroys in AsyncReset 2018-11-04 12:35:10 +00:00
module test: move tmpdir to submodule of common 2018-03-29 23:28:22 -04:00
net benchmark: add JSStreamWrap benchmark 2018-08-16 11:38:48 +10:00
os os: improve cpus() performance 2017-03-02 15:31:21 -05:00
path benchmark: var to const 2017-09-21 08:22:19 -07:00
process benchmark: var to const 2017-09-21 08:22:19 -07:00
querystring benchmark: var to const 2017-09-21 08:22:19 -07:00
streams benchmark: var to const 2017-09-21 08:22:19 -07:00
string_decoder benchmark: var to const 2017-09-21 08:22:19 -07:00
timers benchmark: var to const 2017-09-21 08:22:19 -07:00
tls test: add test for tls benchmarks 2018-03-29 23:28:19 -04:00
url benchmark: var to const 2017-09-21 08:22:19 -07:00
util benchmark: add util/type-check 2017-10-23 09:10:04 -05:00
v8 v8: refactor struture of v8 module 2017-04-28 14:29:45 -07:00
vm lib,src: fix consistent spacing inside braces 2017-09-20 12:32:17 -07:00
_benchmark_progress.js benchmark: var to const 2017-09-21 08:22:19 -07:00
_cli.js benchmark: improve cli error message 2017-04-17 14:48:40 -07:00
_cli.R
_http-benchmarkers.js benchmark: implement duration in http test double 2018-02-27 02:10:54 -05:00
_test-double-benchmarker.js benchmark: implement duration in http test double 2018-02-27 02:10:54 -05:00
common.js benchmark: remove needless RegExp capturing 2017-06-21 22:44:17 +02:00
compare.js benchmark: improve compare output 2018-04-13 03:45:03 +01:00
compare.R benchmark: make compare.R easier to understand 2018-02-27 02:10:10 -05:00
README.md http2: add tests and benchmarks 2017-08-14 13:19:29 +02:00
run.js tools,benchmark: use stricter indentation linting 2017-07-18 19:56:52 +02:00
scatter.js tools,benchmark: use stricter indentation linting 2017-07-18 19:56:52 +02:00
scatter.R benchmark: ignore significance when using --runs 1 2016-09-16 20:58:27 +02:00

Node.js Core Benchmarks

This folder contains code and data used to measure performance of different Node.js implementations and different ways of writing JavaScript run by the built-in JavaScript engine.

For a detailed guide on how to write and run benchmarks in this directory, see the guide on benchmarks.

Table of Contents

Benchmark Directories

Directory Purpose
arrays Benchmarks for various operations on array-like objects, including Array, Buffer, and typed arrays.
assert Benchmarks for the assert subsystem.
buffers Benchmarks for the buffer subsystem.
child_process Benchmarks for the child_process subsystem.
crypto Benchmarks for the crypto subsystem.
dgram Benchmarks for the dgram subsystem.
domain Benchmarks for the domain subsystem.
es Benchmarks for various new ECMAScript features and their pre-ES2015 counterparts.
events Benchmarks for the events subsystem.
fixtures Benchmarks fixtures used in various benchmarks throughout the benchmark suite.
fs Benchmarks for the fs subsystem.
http Benchmarks for the http subsystem.
http2 Benchmarks for the http2 subsystem.
misc Miscellaneous benchmarks and benchmarks for shared internal modules.
module Benchmarks for the module subsystem.
net Benchmarks for the net subsystem.
path Benchmarks for the path subsystem.
process Benchmarks for the process subsystem.
querystring Benchmarks for the querystring subsystem.
streams Benchmarks for the streams subsystem.
string_decoder Benchmarks for the string_decoder subsystem.
timers Benchmarks for the timers subsystem, including setTimeout, setInterval, .etc.
tls Benchmarks for the tls subsystem.
url Benchmarks for the url subsystem, including the legacy url implementation and the WHATWG URL implementation.
util Benchmarks for the util subsystem.
vm Benchmarks for the vm subsystem.

Other Top-level files

The top-level files include common dependencies of the benchmarks and the tools for launching benchmarks and visualizing their output. The actual benchmark scripts should be placed in their corresponding directories.

  • _benchmark_progress.js: implements the progress bar displayed when running compare.js
  • _cli.js: parses the command line arguments passed to compare.js, run.js and scatter.js
  • _cli.R: parses the command line arguments passed to compare.R
  • _http-benchmarkers.js: selects and runs external tools for benchmarking the http subsystem.
  • common.js: see Common API.
  • compare.js: command line tool for comparing performance between different Node.js binaries.
  • compare.R: R script for statistically analyzing the output of compare.js
  • run.js: command line tool for running individual benchmark suite(s).
  • scatter.js: command line tool for comparing the performance between different parameters in benchmark configurations, for example to analyze the time complexity.
  • scatter.R: R script for visualizing the output of scatter.js with scatter plots.

Common API

The common.js module is used by benchmarks for consistency across repeated tasks. It has a number of helpful functions and properties to help with writing benchmarks.

createBenchmark(fn, configs[, options])

See the guide on writing benchmarks.

default_http_benchmarker

The default benchmarker used to run HTTP benchmarks. See the guide on writing HTTP benchmarks.

PORT

The default port used to run HTTP benchmarks. See the guide on writing HTTP benchmarks.

sendResult(data)

Used in special benchmarks that can't use createBenchmark and the object it returns to accomplish what they need. This function reports timing data to the parent process (usually created by running compare.js, run.js or scatter.js).