Skip to content

Commit 90d34e1

Browse files
committedNov 24, 2022
Updated benchmarks. Version bumps
1 parent 47ae994 commit 90d34e1

File tree

8 files changed

+72
-70
lines changed

8 files changed

+72
-70
lines changed
 

‎package-lock.json

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
"c8": "^7.12.0",
3131
"codecov": "^3.8.1",
3232
"coveralls": "^3.1.0",
33-
"eslint": "^8.4.0",
33+
"eslint": "^8.28.0",
3434
"eslint-config-airbnb-base": "^15.0.0",
3535
"eslint-config-prettier": "^8.3.0",
3636
"eslint-plugin-import": "^2.22.1",
3737
"eslint-plugin-prettier": "^4.0.0",
3838
"lerna": "^6.0.3",
3939
"mocha": "^10.1.0",
4040
"npm-check": "^6.0.1",
41-
"prettier": "^2.1.2",
41+
"prettier": "^2.8.0",
4242
"should": "^13.2.3",
4343
"sinon": "^14.0.2",
4444
"supertest": "^6.0.1"

‎packages/benchmarks/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ const files = (() => {
2828

2929
const argv = minimist(process.argv.slice(2));
3030
const workers = argv.w || cpus().length;
31-
const connections = argv.c || workers * 125;
32-
const pipelining = argv.p || workers * 10;
33-
const duration = argv.d || 10;
31+
const connections = argv.c || 500;
32+
const pipelining = argv.p || 10;
33+
const duration = argv.d || 5;
3434

3535
const cn = (title = null) =>
3636
autocannon({

‎packages/benchmarks/package-lock.json

+35-33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/benchmarks/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rayo/benchmarks",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "🏆 Rayo's benchmarks.",
55
"main": "index.js",
66
"type": "module",
@@ -25,7 +25,7 @@
2525
"autocannon": "^7.5.0",
2626
"cli-table": "^0.3.11",
2727
"express": "^4.17.1",
28-
"fastify": "^4.9.2",
28+
"fastify": "^4.10.2",
2929
"kleur": "^4.1.4",
3030
"minimist": "^1.2.5",
3131
"pancho": "^1.0.2",

‎packages/benchmarks/readme.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $> rayobench -- -u http://localhost:5050 -c 1000 -p 25 -d 10
3333

3434
Please note that these results are only meant as raw performance indicators. Your application's logic, which is what makes most applications slow, may not see great performance gains between frameworks.
3535

36-
> These tests were conducted on a CPU-optimized server (DigitalOcean; 32 GB RAM, 16 vCPUs, Debian 11 x64) and Node.js v16.18.1.<br />
36+
> These tests were conducted on Mac Studio (M1 Ultra, 64 GB RAM, 20 CPU) and Node.js v16.18.1.<br />
3737
> Measured after one warm-up run.
3838
3939
```
@@ -42,20 +42,20 @@ Tested with:
4242
500 connections,
4343
20 pipelines,
4444
5 seconds,
45-
16 CPU cores.
45+
20 CPU cores.
4646
4747
┌────────────┬─────────┬────────────┬────────────┬───────────┬──────────────┐
4848
│ │ Version │ Reqs/sec ^ │ Reqs/sec * │ Latency * │ Throughput * │
4949
├────────────┼─────────┼────────────┼────────────┼───────────┼──────────────┤
50-
│ Storm │ 1.3.0 │ 306104243155.241.0233.63 Mb. │
50+
│ Storm │ 1.3.0 │ 226325213081.623.0529.46 Mb. │
5151
├────────────┼─────────┼────────────┼────────────┼───────────┼──────────────┤
52-
│ Rayo │ 1.4.0 │ 49207 │ 48316.8 │ 202.73 │ 6.68 Mb.
52+
│ Rayo │ 1.4.0 │ 127765 │ 125267.2 │ 39.24 │ 17.32 Mb. │
5353
├────────────┼─────────┼────────────┼────────────┼───────────┼──────────────┤
54-
│ Polka │ 0.5.2 │ 50934 │ 48080 │ 202.09 │ 6.65 Mb.
54+
│ Polka │ 0.5.2 │ 126479 │ 122886.4 │ 38.22 │ 16.99 Mb. │
5555
├────────────┼─────────┼────────────┼────────────┼───────────┼──────────────┤
56-
│ Fastify │ 4.9.2 │ 49360 │ 47068.8 │ 207.95 │ 8.39 Mb.
56+
│ Fastify │ 4.10.2 │ 122810 │ 121273.6 │ 40.6 │ 21.63 Mb. │
5757
├────────────┼─────────┼────────────┼────────────┼───────────┼──────────────┤
58-
│ Express │ 4.17.1 │ 1386811423.6805.531.58 Mb. │
58+
│ Express │ 4.17.1 │ 3709436035.2135.914.98 Mb. │
5959
└────────────┴─────────┴────────────┴────────────┴───────────┴──────────────┘
6060
* Average
6161
```

‎packages/compress/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/rayo/package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.