omq-rfc-zstd 0.2.0 → 0.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 +2 -2
- data/lib/omq/compression/zstd/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c727a43b65dc4a6b486df1744130f955b8bfabc3b7ba752939049dce6279288
|
|
4
|
+
data.tar.gz: bdca9baac840fb8dbdb153eb80bcf1fed41b8d95b0202f482c6b156c68e02056
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d4aa25f085d486f015333c7d795e5e7b287fc4e6e7dc945ef48b5f86405acb3268d23c0acda6e05ccece058a95fc0cc254b868daff8d3cdd247664bbfc51ea5
|
|
7
|
+
data.tar.gz: cc5715d5f5c48abe5e62864fc6b547fa94d6ddbca7e1baa5cc0786c2c259ba0579bb35b0166fc5ecbc13635dead35b311cfce0a66543639691aae1d739712952
|
data/README.md
CHANGED
|
@@ -45,7 +45,7 @@ push.connect("tcp://127.0.0.1:5555")
|
|
|
45
45
|
dict = File.binread("schema.dict")
|
|
46
46
|
push.compression = OMQ::Compression::Zstd.with_dictionary(dict)
|
|
47
47
|
|
|
48
|
-
# 3. Caller-supplied dictionary, sent over the wire once via
|
|
48
|
+
# 3. Caller-supplied dictionary, sent over the wire once via ZDICT command
|
|
49
49
|
push.compression = OMQ::Compression::Zstd.with_dictionary(dict, inline: true)
|
|
50
50
|
|
|
51
51
|
# 4. Auto-trained dictionary — zero config
|
|
@@ -64,7 +64,7 @@ the fast strategy; see RFC §3.4).
|
|
|
64
64
|
| `OMQ::Options` extension (`compression=`) | Implemented |
|
|
65
65
|
| Handshake property injection | Implemented |
|
|
66
66
|
| `Connection#receive_message` / send seam | Implemented |
|
|
67
|
-
| `
|
|
67
|
+
| `ZDICT` command frame (`dict:inline`, `dict:auto`) | Implemented |
|
|
68
68
|
| Integration test (real OMQ socket pair) | Implemented |
|
|
69
69
|
| omq-cli integration (`-z` / `-Z` / `--compress=LEVEL`) | Implemented |
|
|
70
70
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omq-rfc-zstd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Patrik Wenger
|
|
@@ -13,16 +13,16 @@ dependencies:
|
|
|
13
13
|
name: omq
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
|
-
- - "
|
|
16
|
+
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.
|
|
18
|
+
version: '0.21'
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
|
-
- - "
|
|
23
|
+
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.
|
|
25
|
+
version: '0.21'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: protocol-zmtp
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|