0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/benchmark
Daniel Bevenius ce6ec368a6 build: use BUILDTYPE in bench-addons-build targets
This commit uses the BUILDTYPE for the benchmark targets that currently
explicitly use Release as the build type.

The motivation for this change is allows switching between debug builds
and release builds using the bench-addons-clean/bench-addons-build
targets.

PR-URL: https://github.com/nodejs/node/pull/24033
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2018-11-11 12:09:25 -05:00
..
assert benchmark: improve assert benchmarks 2018-08-13 11:46:40 +02:00
async_hooks
buffers test: fix long-running buffer benchmarks 2018-04-22 11:06:30 +02:00
child_process benchmark: remove unused catch bindings 2018-11-06 10:59:23 -05:00
cluster
crypto benchmark,doc,lib,src,test,tools: fix typos 2018-10-09 16:53:12 +03:00
dgram
dns
domain
es benchmark: disable only the ESLint rule needing it 2018-06-06 21:03:32 -07:00
events events: optimize condition for optimal scenario 2018-05-03 14:45:09 +02:00
fixtures benchmark: support more options in startup benchmark 2018-11-09 15:55:19 -08:00
fs benchmark: add dir and withFileTypes option readdir benchmarks 2018-11-08 15:01:14 -08:00
http benchmark: add common.binding() 2018-10-14 13:23:16 -04:00
http2 http2: improve http2 code a bit 2018-11-03 19:38:24 -07:00
misc benchmark: support more options in startup benchmark 2018-11-09 15:55:19 -08:00
module benchmark: remove unused catch bindings 2018-11-06 10:59:23 -05:00
napi build: use BUILDTYPE in bench-addons-build targets 2018-11-11 12:09:25 -05:00
net src: improve StreamBase write throughput 2018-10-28 15:15:15 +01:00
os
path
process test: remove unused config 2018-08-02 22:33:51 -04:00
querystring benchmark,lib,test,tools: use consistent quotes 2018-03-07 19:06:44 -08:00
streams tools: add no-duplicate-requires rule 2018-07-12 16:11:11 -05:00
string_decoder
timers timers: run nextTicks after each immediate and timer 2018-10-17 20:38:07 -07:00
tls tls: move convertNPNProtocols to End-of-Life 2018-05-17 09:53:44 -07:00
url benchmark: fix benchmark for url 2018-03-11 03:56:17 +01:00
util benchmark: add common.binding() 2018-10-14 13:23:16 -04:00
v8
vm
worker worker: rename to worker_threads 2018-06-06 19:44:15 +02:00
zlib benchmark: add bench for zlib gzip + gunzip cycle 2018-04-28 08:32:12 +02:00
_benchmark_progress.js
_cli.js
_cli.R
_http-benchmarkers.js benchmark: remove unused catch bindings 2018-11-06 10:59:23 -05:00
_test-double-benchmarker.js test: add test-benchmark-http2 2018-10-29 11:39:32 -07:00
common.js build: use BUILDTYPE in bench-addons-build targets 2018-11-11 12:09:25 -05:00
compare.js
compare.R benchmark: fix "comparisons"' typo 2018-06-02 08:07:22 +09:00
README.md
run.js
scatter.js
scatter.R benchmark: add lines to scatter plots 2018-09-02 13:15:41 +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).