DuskSystems / wayfind

A speedy, flexible router for Rust.
Apache License 2.0
8 stars 0 forks source link

Consider altering benchmarks to match behaviour, where possible #111

Closed CathalMullan closed 2 months ago

CathalMullan commented 2 months ago

As we add more features to our router, we're likely to end up slower than the fastest routers, even if our matching mechanism is quick, simply due to doing more.

wayfind is explicity a HTTP router, and should handle things like returing parameters as strings rather than bytes, handling encoding, etc.

We could update the existing benchmarks to do these things post-match?