基准测试
基准测试只是基准测试,但它们对我们很重要。
路由
我们测量了一系列 JavaScript 路由的速度。例如,find-my-way
是一个在 Fastify 内部使用的高速路由。
- @medley/router
- find-my-way
- koa-tree-router
- trek-router
- express (包括处理)
- koa-router
首先,我们将以下路由注册到我们的每个路由。这些路由与真实世界中使用的路由类似。
ts
export const routes: Route[] = [
{ method: 'GET', path: '/user' },
{ method: 'GET', path: '/user/comments' },
{ method: 'GET', path: '/user/avatar' },
{ method: 'GET', path: '/user/lookup/username/:username' },
{ method: 'GET', path: '/user/lookup/email/:address' },
{ method: 'GET', path: '/event/:id' },
{ method: 'GET', path: '/event/:id/comments' },
{ method: 'POST', path: '/event/:id/comment' },
{ method: 'GET', path: '/map/:location/events' },
{ method: 'GET', path: '/status' },
{ method: 'GET', path: '/very/deeply/nested/route/hello/there' },
{ method: 'GET', path: '/static/*' },
]
然后我们像下面这样将请求发送到端点。
ts
const routes: (Route & { name: string })[] = [
{
name: 'short static', // 短静态路由
method: 'GET',
path: '/user',
},
{
name: 'static with same radix', // 具有相同基数的静态路由
method: 'GET',
path: '/user/comments',
},
{
name: 'dynamic route', // 动态路由
method: 'GET',
path: '/user/lookup/username/hey',
},
{
name: 'mixed static dynamic', // 混合静态动态路由
method: 'GET',
path: '/event/abcd1234/comments',
},
{
name: 'post', // POST 请求
method: 'POST',
path: '/event/abcd1234/comment',
},
{
name: 'long static', // 长静态路由
method: 'GET',
path: '/very/deeply/nested/route/hello/there',
},
{
name: 'wildcard', // 通配符路由
method: 'GET',
path: '/static/index.html',
},
]
让我们看看结果。
在 Node.js 上
以下截图显示了在 Node.js 上的结果。
在 Bun 上
以下截图显示了在 Bun 上的结果。
Cloudflare Workers
Hono 是最快的,与其他 Cloudflare Workers 的路由相比。
- Machine: Apple MacBook Pro, 32 GiB, M1 Pro
- Scripts: benchmarks/handle-event
Hono x 402,820 ops/sec ±4.78% (80 runs sampled)
itty-router x 212,598 ops/sec ±3.11% (87 runs sampled)
sunder x 297,036 ops/sec ±4.76% (77 runs sampled)
worktop x 197,345 ops/sec ±2.40% (88 runs sampled)
Fastest is Hono
✨ Done in 28.06s.
Deno
Hono 是最快的,与其他 Deno 框架相比。
- Machine: Apple MacBook Pro, 32 GiB, M1 Pro, Deno v1.22.0
- Scripts: benchmarks/deno
- Method:
bombardier --fasthttp -d 10s -c 100 'http://localhost:8000/user/lookup/username/foo'
框架 | 版本 | 结果 |
---|---|---|
Hono | 3.0.0 | Requests/sec: 136112 |
Fast | 4.0.0-beta.1 | Requests/sec: 103214 |
Megalo | 0.3.0 | Requests/sec: 64597 |
Faster | 5.7 | Requests/sec: 54801 |
oak | 10.5.1 | Requests/sec: 43326 |
opine | 2.2.0 | Requests/sec: 30700 |
另一个基准测试结果: denosaurs/bench
Bun
Hono 是 Bun 上最快的框架之一。你可以在下面看到。