Results 31 comments of Reve

https://github.com/aquapi/wint @pi0 I make a faster router than Radix3 and it does support method matching. Basically Radix3 is slower than `@medley/router` in dynamic path matching (it is only faster when...

@pi0 I will create a benchmark repo soon for `Radix3` (H3), `Memoirist` (Elysia), `Wint` (Stric) and `find-my-way` (Fastify). I don't add `RegExpRouter` (Hono) because it doesn't handle custom methods by...

@pi0 https://github.com/aquapi/routers Here's the prototype. I simply read from directories and feed all of the stuff to `mitata` and run it. Seems like Radix3 is faster for path that has...

Rebenchmark the whole thing again and Wint was faster in all tests. I changed the Bun runtime flags so it optimizes the code as soon as possible. ``` BUN_JSC_jitPolicyScale=0.0 BUN_JSC_thresholdForOptimizeSoon=0...

The only reasonable URL patterns are wildcards and URL parameters, which we can basically implement with a radix tree. RegExp is not fast, and it may decreases performance on other...

@redbar0n Stric was abandoned for a while. I will remove Stric and add my new tools.

Would be good if you can split dependencies instead of putting all of them in a single `package.json` file.

@ItzDerock `Post JSON` cannot be faster than `GET /` You should rebench