raptor 0.15.0 → 0.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +2 -2
- data/lib/raptor/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2048ec0cf41ced4050d0b53949d96c71cfab42e921c05bd4db16e03099c441d
|
|
4
|
+
data.tar.gz: 5c0eacc1154ea6e8ed72ccd29dee4770347dbf773f8087895b9de2be1b9c699b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3844c94223e342793ce75e329f4c86dab40ce353a6d7041e06d4c01f26569102df7a26bba0324f829558363d254e7521862fbe2f846b0de4c1af55f2a1f59062
|
|
7
|
+
data.tar.gz: d595b6670b26bc19a8805c48d17bd44ebc5a1e075a8b8cc44db811a0b5f79052862ad160514d109758271010161c5fd9b516e71ef9a2637a7fff25e64aafac2b
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -37,7 +37,7 @@ run proc { |_env| [200, { "content-type" => "text/plain" }, ["Hello, World!"]] }
|
|
|
37
37
|
```
|
|
38
38
|
> bundle exec raptor -w 4 -t 3 hello_world.ru
|
|
39
39
|
[Raptor 33061|Main|Main] Cluster initializing:
|
|
40
|
-
[Raptor 33061|Main|Main] ├─ Version: 0.15.
|
|
40
|
+
[Raptor 33061|Main|Main] ├─ Version: 0.15.1
|
|
41
41
|
[Raptor 33061|Main|Main] ├─ Ruby Version: ruby 4.0.6 (2026-07-14 revision 03b6d3f889) +YJIT +PRISM [arm64-darwin23]
|
|
42
42
|
[Raptor 33061|Main|Main] ├─ Environment: development
|
|
43
43
|
[Raptor 33061|Main|Main] ├─ Master PID: 33061
|
|
@@ -193,7 +193,7 @@ Worker 1 (phase 0): pid=91351, requests=1199, busy=1/3, backlog=0, booted, last_
|
|
|
193
193
|
|
|
194
194
|
## (Micro) Benchmarks
|
|
195
195
|
|
|
196
|
-
Raptor 0.15.
|
|
196
|
+
Raptor 0.15.1 vs Puma 8.0.2 vs PumaPlus 0.1.0 vs Falcon 0.57.0 across two workload profiles. **IO-bound** is a GET
|
|
197
197
|
endpoint that interleaves 5-10 short sleeps (total 2.5-15ms) with small CPU work, simulating a read path that makes
|
|
198
198
|
several DB or cache calls. **CPU-bound** is a POST endpoint that accepts a small JSON body, interleaves 3-5 chunks of
|
|
199
199
|
JSON item building (total 450-1500 items) with sub-100µs sleeps, and returns the built array, simulating a write path
|
data/lib/raptor/version.rb
CHANGED