node/benchmark
Rich Trott a1a54ca3f1 benchmark: terminate child process on Windows
test-benchmark-child-process failures reveal that
child-process-exec-stdout benchmark sometimes leaves around a stray
yes.exe process. Add code to terminate the process.

PR-URL: https://github.com/nodejs/node/pull/12658
Ref: https://github.com/nodejs/node/issues/12560
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2017-04-28 16:18:35 -07:00
..
arrays benchmark: avoid TurboFan deopt in arrays bench 2017-04-04 10:45:43 -07:00
assert benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
buffers benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
child_process benchmark: terminate child process on Windows 2017-04-28 16:18:35 -07:00
crypto benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
dgram benchmark: strip BOM in dgram/bind-params 2017-02-24 01:54:45 +01:00
domain tools: enable one-var-declaration-per-line ESLint rule 2017-02-21 12:53:19 +01:00
es benchmark: add benchmark for string concatenations 2017-04-20 04:47:18 +03:00
events events: improve once() performance 2016-12-28 21:23:25 -05:00
fixtures benchmark: control HTTP benchmarks run time 2017-04-09 18:16:08 +08:00
fs benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
http benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
misc benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
module benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
net benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
os os: improve cpus() performance 2017-03-02 15:31:21 -05:00
path benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
process process: improve memoryUsage() performance 2017-02-23 17:19:39 -08:00
querystring benchmark: remove querystring forced optimization 2017-03-06 16:32:01 +01:00
streams benchmark: remove streams forced optimization 2017-03-06 16:32:02 +01:00
string_decoder string_decoder: rewrite implementation 2016-05-29 14:48:11 -04:00
timers benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
tls benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
url benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
util benchmark: remove forced optimization from util 2017-03-06 16:32:05 +01:00
v8 v8: refactor struture of v8 module 2017-04-28 14:29:45 -07:00
vm benchmark: remove v8ForceOptimization calls 2017-03-21 10:11:36 +01:00
README.md benchmark: cleanup after forced optimization drop 2017-03-06 16:32:06 +01:00
_benchmark_progress.js benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
_cli.R benchmark: use t-test for comparing node versions 2016-07-26 13:21:53 +02:00
_cli.js benchmark: improve cli error message 2017-04-17 14:48:40 -07:00
_http-benchmarkers.js benchmark: fix typo in _http-benchmarkers.js 2017-04-20 04:48:05 +03:00
_test-double-benchmarker.js benchmark: add test double HTTP benchmarker 2017-04-09 18:16:03 +08:00
common.js benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
compare.R benchmark,build,doc,lib,src,test: correct typos 2017-03-03 16:29:19 -05:00
compare.js benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
run.js benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00
scatter.R benchmark: ignore significance when using --runs 1 2016-09-16 20:58:27 +02:00
scatter.js benchmark: reduce string concatenations 2017-04-20 04:46:37 +03:00

README.md

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.
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).