Shipped Paired A/B benchmarks
Not "Typeway does N req/s" — every arm is measured back to back against its own baseline on
one machine, interleaved round by round, median by RPS. The question was what the glue costs.
| scenario | ratio | Δ µs/req |
| registered route, bridge mounted | 0.985× | +0.2 |
| SSR via connect() fallback | 1.010× | −2.0 |
| static asset, prod path | 0.995× | +0.2 |
| bare bridge round-trip (GET) — dev only | 0.485× | +10.6 |
The last row is the honest one, and it only ever happens in development: a bridge hop costs
~10 µs, which is most of a request that does nothing and none of a request that does
something. Production never touches the bridge — the built handler is mounted straight onto
Elysia.
2226b7b