Skip to content

Commit ebdfbbe

Browse files
committed
update rsults
1 parent e111657 commit ebdfbbe

82 files changed

Lines changed: 1388 additions & 158 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

frameworks/caddy/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"enabled": true,
99
"tests": [
1010
"baseline",
11+
"pipelined",
1112
"limited-conn",
1213
"json",
1314
"compression",

frameworks/flask/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"enabled": true,
99
"tests": [
1010
"baseline",
11+
"pipelined",
1112
"noisy",
1213
"limited-conn",
1314
"json",

frameworks/go-fasthttp/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"enabled": true,
99
"tests": [
1010
"baseline",
11+
"pipelined",
1112
"noisy",
1213
"limited-conn",
1314
"json",

frameworks/h2o-mruby/entrypoint.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,14 @@ hosts:
7777
[200, {"content-type" => "text/plain"}, [sum.to_s]]
7878
end
7979
80+
"/upload":
81+
mruby.handler: |
82+
Proc.new do |env|
83+
input = env["rack.input"]
84+
body = input ? input.read : ""
85+
[200, {"content-type" => "text/plain"}, [body.bytesize.to_s]]
86+
end
87+
8088
"/json":
8189
mruby.handler: |
8290
\$dataset = nil

frameworks/h2o-mruby/meta.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
"pipelined",
1212
"limited-conn",
1313
"json",
14+
"upload",
1415
"compression",
1516
"noisy",
17+
"mixed",
1618
"baseline-h2",
1719
"static-h2",
1820
"baseline-h3",

frameworks/spring-jvm-jetty/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"enabled": true,
99
"tests": [
1010
"baseline",
11+
"pipelined",
1112
"limited-conn",
1213
"json",
1314
"upload",

frameworks/spring-jvm/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"enabled": true,
99
"tests": [
1010
"baseline",
11+
"pipelined",
1112
"limited-conn",
1213
"json",
1314
"noisy",

scripts/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ else: print(f'{bps}B/s')
563563
# Parse per-template response counts (gcannon mixed/multi-template output)
564564
tpl_json=""
565565
if [ "$USE_H2LOAD" = "false" ] && [ "$USE_OHA" = "false" ]; then
566-
tpl_line=$(echo "$best_output" | grep -oP 'Per-template: \K.*' || echo "")
566+
tpl_line=$(echo "$best_output" | grep -oP 'Per-template-ok: \K.*' || echo "")
567567
if [ -n "$tpl_line" ] && [ "$endpoint" = "mixed" ]; then
568568
# Mixed templates: get×3, post_cl×2, json-get×1, db-get×1, upload-small×1, json-gzip×2
569569
IFS=',' read -ra tpl_counts <<< "$tpl_line"

site/data/baseline-16384.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,4 +400,4 @@
400400
"status_4xx": 0,
401401
"status_5xx": 0
402402
}
403-
]
403+
]

site/data/baseline-4096.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,4 +400,4 @@
400400
"status_4xx": 0,
401401
"status_5xx": 0
402402
}
403-
]
403+
]

0 commit comments

Comments
 (0)