0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/benchmark
Joyee Cheung 8450d11292
benchmark: support URL inputs in create-clientrequest
This patch adds the option in the create-clientrequest benchmark
to accept URL inputs (as strings or as URL objects) so we can
measure the impact of URL parsing in a more sophisticated use case.

PR-URL: https://github.com/nodejs/node/pull/24302
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2018-11-20 05:14:36 +08:00
..
assert benchmark: improve assert benchmarks 2018-08-13 11:46:40 +02:00
async_hooks
buffers
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
events
fixtures benchmark: pre-generate data set for URL benchmarks 2018-11-20 05:14:34 +08:00
fs benchmark: add dir and withFileTypes option readdir benchmarks 2018-11-08 15:01:14 -08:00
http benchmark: support URL inputs in create-clientrequest 2018-11-20 05:14:36 +08: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: pre-generate data set for URL benchmarks 2018-11-20 05:14:34 +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
url benchmark: pre-generate data set for URL benchmarks 2018-11-20 05:14:34 +08:00
util benchmark: add common.binding() 2018-10-14 13:23:16 -04:00
v8
vm
worker
zlib
_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 benchmark: pre-generate data set for URL benchmarks 2018-11-20 05:14:34 +08:00
compare.js
compare.R
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).