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:
authorJames M Snell <jasnell@gmail.com>2017-10-16 20:43:40 +0300
committerMyles Borins <mylesborins@google.com>2017-10-24 00:35:54 +0300
commit5d34f2f5a762698081f49ab97d167e05c74dcf53 (patch)
tree266c162545780dfc8f54d6a25ed1ad41ebfa3631 /benchmark
parent9aa5d494e64e27dcb6e73774b8134d92338d1f91 (diff)
benchmark: improve http2 benchmark configs
PR-URL: https://github.com/nodejs/node/pull/16239 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/http2/headers.js3
-rw-r--r--benchmark/http2/respond-with-fd.js5
-rw-r--r--benchmark/http2/simple.js5
-rw-r--r--benchmark/http2/write.js5
4 files changed, 11 insertions, 7 deletions
diff --git a/benchmark/http2/headers.js b/benchmark/http2/headers.js
index f6b29347cdb..62156774caa 100644
--- a/benchmark/http2/headers.js
+++ b/benchmark/http2/headers.js
@@ -6,7 +6,8 @@ const PORT = common.PORT;
const bench = common.createBenchmark(main, {
n: [1e3],
nheaders: [0, 10, 100, 1000],
-}, { flags: ['--no-warnings'] });
+ benchmarker: ['h2load']
+}, { flags: ['--no-warnings', '--expose-http2'] });
function main(conf) {
const n = +conf.n;
diff --git a/benchmark/http2/respond-with-fd.js b/benchmark/http2/respond-with-fd.js
index a235bd87d51..791e5f3d1e7 100644
--- a/benchmark/http2/respond-with-fd.js
+++ b/benchmark/http2/respond-with-fd.js
@@ -10,8 +10,9 @@ const file = path.join(path.resolve(__dirname, '../fixtures'), 'alice.html');
const bench = common.createBenchmark(main, {
requests: [100, 1000, 10000, 100000, 1000000],
streams: [100, 200, 1000],
- clients: [1, 2]
-}, { flags: ['--no-warnings'] });
+ clients: [1, 2],
+ benchmarker: ['h2load']
+}, { flags: ['--no-warnings', '--expose-http2'] });
function main(conf) {
diff --git a/benchmark/http2/simple.js b/benchmark/http2/simple.js
index 8d7767197bc..e8cb3ddee2d 100644
--- a/benchmark/http2/simple.js
+++ b/benchmark/http2/simple.js
@@ -11,8 +11,9 @@ const file = path.join(path.resolve(__dirname, '../fixtures'), 'alice.html');
const bench = common.createBenchmark(main, {
requests: [100, 1000, 10000, 100000],
streams: [100, 200, 1000],
- clients: [1, 2]
-}, { flags: ['--no-warnings'] });
+ clients: [1, 2],
+ benchmarker: ['h2load']
+}, { flags: ['--no-warnings', '--expose-http2'] });
function main(conf) {
const n = +conf.requests;
diff --git a/benchmark/http2/write.js b/benchmark/http2/write.js
index e4f64cc05de..91b9c8f0c5c 100644
--- a/benchmark/http2/write.js
+++ b/benchmark/http2/write.js
@@ -6,8 +6,9 @@ const PORT = common.PORT;
const bench = common.createBenchmark(main, {
streams: [100, 200, 1000],
length: [64 * 1024, 128 * 1024, 256 * 1024, 1024 * 1024],
- size: [100000]
-}, { flags: ['--no-warnings'] });
+ size: [100000],
+ benchmarker: ['h2load']
+}, { flags: ['--no-warnings', '--expose-http2'] });
function main(conf) {
const m = +conf.streams;