HTTP Pipelining Benchmark (16x): Implementation Guide
16 HTTP requests are sent back-to-back on each connection before waiting for responses. Uses a lightweight GET /pipeline endpoint that returns a fixed ok response, isolating raw I/O throughput from application logic.
This test is reference-only - it does not contribute to the composite score. HTTP/1.1 pipelining is disabled in modern browsers and unsupported by mainstream proxies, so the profile is kept as a raw I/O and middleware-efficiency indicator (issue #1058). Results still appear on the board as a faded column.
Connections: 512, 4,096
Expected request/response
GET /pipeline HTTP/1.1
HTTP/1.1 200 OK
Content-Type: text/plain
ok
What it measures
- HTTP pipelining support and efficiency
- Frameworks that parse multiple requests from a single read buffer gain a major advantage
- Frameworks processing one request at a time per connection see minimal improvement over baseline
- Network batching, write coalescing, and syscall reduction
Why a separate endpoint?
The /pipeline endpoint removes application-level variance (query parsing, body handling) so the benchmark measures pure I/O and protocol handling throughput. This isolates the framework ability to batch and process pipelined requests efficiently.