bayserver-docker-http 2.2.2 → 2.3.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 +4 -4
- data/README.md +3 -2
- data/lib/baykit/bayserver/docker/http/h1/h1_warp_handler.rb +7 -2
- metadata +8 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2472749e85b418b6a3ae8bf72289e0e8638740dbe0ae8b8f31609fb2a4dc19f
|
4
|
+
data.tar.gz: 95aba367c13f04b8e88ff5cdd3d90db23d5153967070bbd5d7df8a9f9c08c628
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c24c78b7d0d15a4b45e123933b0662404f01a172bf7a1e75b378f9067fe5a17a5ae82fbdb88f2122e0077cad46616e1765094cac6159a0a061ac114423782fa2
|
7
|
+
data.tar.gz: 493169c61748f514320ecf18150cff3fb40a0f6da9247fad560ab096af61bde8802435188bca2fa009fb5cdb8d2f2b5a045f23e420da93fbac8da7bbabe7eec5
|
data/README.md
CHANGED
@@ -1,2 +1,3 @@
|
|
1
|
-
BayServer
|
2
|
-
|
1
|
+
BayServer is one of the high-speed web servers. It operates as a single-threaded, asynchronous server, which makes it exceptionally fast. It also supports multi-core processors, harnessing the full potential of the CPU's capabilities.
|
2
|
+
|
3
|
+
https://baykit.yokohama
|
@@ -111,16 +111,21 @@ module Baykit
|
|
111
111
|
end
|
112
112
|
|
113
113
|
|
114
|
-
@
|
114
|
+
@ship.post(cmd)
|
115
115
|
end
|
116
116
|
|
117
117
|
def post_warp_contents(tur, buf, start, len, &callback)
|
118
118
|
cmd = CmdContent.new(buf, start, len)
|
119
|
-
@
|
119
|
+
@ship.post(cmd, callback)
|
120
120
|
end
|
121
121
|
|
122
122
|
def post_warp_end(tur)
|
123
|
+
cmd = CmdEndContent.new()
|
124
|
+
callback = lambda do
|
125
|
+
@ship.agent.non_blocking_handler.ask_to_read(@ship.socket)
|
126
|
+
end
|
123
127
|
|
128
|
+
@ship.post(cmd, callback)
|
124
129
|
end
|
125
130
|
|
126
131
|
def verify_protocol(proto)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bayserver-docker-http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michisuke-P
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bayserver-core
|
@@ -16,15 +16,17 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.
|
19
|
+
version: 2.3.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 2.
|
27
|
-
description:
|
26
|
+
version: 2.3.0
|
27
|
+
description: BayServer is one of the high-speed web servers. It operates as a single-threaded,
|
28
|
+
asynchronous server, which makes it exceptionally fast. It also supports multi-core
|
29
|
+
processors, harnessing the full potential of the CPU's capabilities.
|
28
30
|
email: michisukep@gmail.com
|
29
31
|
executables: []
|
30
32
|
extensions: []
|
@@ -104,5 +106,5 @@ requirements: []
|
|
104
106
|
rubygems_version: 3.1.6
|
105
107
|
signing_key:
|
106
108
|
specification_version: 4
|
107
|
-
summary:
|
109
|
+
summary: HTTP docker of BayServer
|
108
110
|
test_files: []
|