跳至内容

基准测试

基准测试只是基准测试,但对我们很重要。

路由器

我们测量了许多 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',
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 上的结果。

bench

bench

bench

bench

bench

bench

bench

bench

在 Bun 上

以下屏幕截图显示了在 Bun 上的结果。

bench

bench

bench

bench

bench

bench

bench

bench

Cloudflare Workers

Hono 是最快的,与 Cloudflare Workers 的其他路由器相比。

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 的其他框架相比。

  • 机器:Apple MacBook Pro,32 GiB,M1 Pro,Deno v1.22.0
  • 脚本:benchmarks/deno
  • 方法:bombardier --fasthttp -d 10s -c 100 'https://127.0.0.1:8000/user/lookup/username/foo'
框架版本结果
Hono3.0.0请求/秒:136112
4.0.0-beta.1请求/秒:103214
Megalo0.3.0请求/秒:64597
更快5.7请求/秒:54801
oak10.5.1请求/秒:43326
opine2.2.0请求/秒:30700

另一个基准测试结果:denosaurs/bench

Bun

Hono 是 Bun 最快的框架之一。您可以在下面看到它。

根据 MIT 许可证发布。