Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian White <mscdex@mscdex.net>2017-06-04 06:28:57 +0300
committerAnna Henningsen <anna@addaleax.net>2017-07-18 20:56:19 +0300
commite30fc2c5ba73c0cdd117ff6ee5c47239bc290702 (patch)
tree6344f200582940bab709081032ea24d49e3a0883 /benchmark
parent864abc567e98ea72a80afdb604afd5d617c356d3 (diff)
process: improve nextTick() performance
PR-URL: https://github.com/nodejs/node/pull/13446 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com>
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/process/next-tick-depth-args.js2
-rw-r--r--benchmark/process/next-tick-depth.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/process/next-tick-depth-args.js b/benchmark/process/next-tick-depth-args.js
index 066b4837856..06bea4676b3 100644
--- a/benchmark/process/next-tick-depth-args.js
+++ b/benchmark/process/next-tick-depth-args.js
@@ -2,7 +2,7 @@
var common = require('../common.js');
var bench = common.createBenchmark(main, {
- millions: [2]
+ millions: [12]
});
process.maxTickDepth = Infinity;
diff --git a/benchmark/process/next-tick-depth.js b/benchmark/process/next-tick-depth.js
index bc513d338d6..824b7a8b69d 100644
--- a/benchmark/process/next-tick-depth.js
+++ b/benchmark/process/next-tick-depth.js
@@ -1,7 +1,7 @@
'use strict';
var common = require('../common.js');
var bench = common.createBenchmark(main, {
- millions: [2]
+ millions: [12]
});
process.maxTickDepth = Infinity;