puma-plus 0.1.0
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 +7 -0
- data/exe/puma-plus +12 -0
- data/exe/puma-plus-worker +79 -0
- data/ext/puma_plus_gvl/extconf.rb +16 -0
- data/ext/puma_plus_gvl/puma_plus_gvl.c +160 -0
- data/lib/puma_plus/address.rb +33 -0
- data/lib/puma_plus/app_loader.rb +66 -0
- data/lib/puma_plus/config_file.rb +267 -0
- data/lib/puma_plus/control_channel.rb +138 -0
- data/lib/puma_plus/gvl.rb +76 -0
- data/lib/puma_plus/hooks.rb +88 -0
- data/lib/puma_plus/input.rb +216 -0
- data/lib/puma_plus/launcher.rb +347 -0
- data/lib/puma_plus/rack_env.rb +92 -0
- data/lib/puma_plus/ractor_worker.rb +227 -0
- data/lib/puma_plus/shepherd.rb +234 -0
- data/lib/puma_plus/version.rb +5 -0
- data/lib/puma_plus/wire.rb +236 -0
- data/lib/puma_plus/worker.rb +90 -0
- data/lib/puma_plus/worker_thread.rb +331 -0
- data/lib/puma_plus/ws.rb +233 -0
- data/lib/puma_plus/ws_event.rb +78 -0
- metadata +85 -0
metadata
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: puma-plus
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Evan Phoenix
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: puma-plus-core
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - '='
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: 0.1.0
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - '='
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 0.1.0
|
|
26
|
+
description: |
|
|
27
|
+
puma-plus runs your Rack application behind a Go frontend that speaks
|
|
28
|
+
HTTP/1.1, HTTP/2 and HTTP/3. The request queue lives in Go, which makes
|
|
29
|
+
queue time exactly measurable rather than estimated -- and that measurement
|
|
30
|
+
is what drives scaling decisions.
|
|
31
|
+
email:
|
|
32
|
+
- evan@miren.dev
|
|
33
|
+
executables:
|
|
34
|
+
- puma-plus
|
|
35
|
+
- puma-plus-worker
|
|
36
|
+
extensions:
|
|
37
|
+
- ext/puma_plus_gvl/extconf.rb
|
|
38
|
+
extra_rdoc_files: []
|
|
39
|
+
files:
|
|
40
|
+
- exe/puma-plus
|
|
41
|
+
- exe/puma-plus-worker
|
|
42
|
+
- ext/puma_plus_gvl/extconf.rb
|
|
43
|
+
- ext/puma_plus_gvl/puma_plus_gvl.c
|
|
44
|
+
- lib/puma_plus/address.rb
|
|
45
|
+
- lib/puma_plus/app_loader.rb
|
|
46
|
+
- lib/puma_plus/config_file.rb
|
|
47
|
+
- lib/puma_plus/control_channel.rb
|
|
48
|
+
- lib/puma_plus/gvl.rb
|
|
49
|
+
- lib/puma_plus/hooks.rb
|
|
50
|
+
- lib/puma_plus/input.rb
|
|
51
|
+
- lib/puma_plus/launcher.rb
|
|
52
|
+
- lib/puma_plus/rack_env.rb
|
|
53
|
+
- lib/puma_plus/ractor_worker.rb
|
|
54
|
+
- lib/puma_plus/shepherd.rb
|
|
55
|
+
- lib/puma_plus/version.rb
|
|
56
|
+
- lib/puma_plus/wire.rb
|
|
57
|
+
- lib/puma_plus/worker.rb
|
|
58
|
+
- lib/puma_plus/worker_thread.rb
|
|
59
|
+
- lib/puma_plus/ws.rb
|
|
60
|
+
- lib/puma_plus/ws_event.rb
|
|
61
|
+
homepage: https://github.com/evanphx/puma-plus
|
|
62
|
+
licenses:
|
|
63
|
+
- MIT
|
|
64
|
+
metadata:
|
|
65
|
+
source_code_uri: https://github.com/evanphx/puma-plus/tree/v0.1.0
|
|
66
|
+
changelog_uri: https://github.com/evanphx/puma-plus/blob/main/CHANGELOG.md
|
|
67
|
+
rubygems_mfa_required: 'true'
|
|
68
|
+
rdoc_options: []
|
|
69
|
+
require_paths:
|
|
70
|
+
- lib
|
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: 3.2.0
|
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - ">="
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: '0'
|
|
81
|
+
requirements: []
|
|
82
|
+
rubygems_version: 4.0.16
|
|
83
|
+
specification_version: 4
|
|
84
|
+
summary: A Ruby web server that measures request queue time and scales on it
|
|
85
|
+
test_files: []
|