redis-clustering 5.3.0 → 5.4.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 +7 -0
- metadata +7 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7060eff856ef3d21ddeff60bfd2a0b6d741d04fd9b233f5b36eee50812b88bc
|
4
|
+
data.tar.gz: 07d96f3179db08a80f054542474ef0d69a3db1cfce92b80b729a9f2b04bf9e1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05b728ef68b71a9dc1f370cb2c03cc5fb7bc01c9a3278b160cebf0f6de3a6b42ad5cb3c9c9a30e9a49f9f4cffad16ec926825796941e2d0d99b09fad964a0773
|
7
|
+
data.tar.gz: 6b16c0354a7a8bfbef6124186e98d28e183e00e614471543e51acfca01585a44a35f1157b75b815c6bb156ca4be975c39c1eb4ce9d0aa248db4834040023d77c
|
data/README.md
CHANGED
@@ -99,3 +99,10 @@ end
|
|
99
99
|
In a cluster mode client, you need to pass a block if you call the watch method and you need to specify an argument to the block.
|
100
100
|
Also, you should use the block argument as a receiver to call commands in the block.
|
101
101
|
Although the above restrictions are needed, this implementations is compatible with a standalone client.
|
102
|
+
|
103
|
+
## MGET, MSET and DEL
|
104
|
+
This gem allows you to use MGET, MSET and DEL specifying multiple keys without a hash tag.
|
105
|
+
Cross-slot errors are prevented by an internal dedicated implementation.
|
106
|
+
The underlying library makes the behavior possible.
|
107
|
+
(ref. [redis-cluster-client](https://github.com/redis-rb/redis-cluster-client))
|
108
|
+
That said, we recommend to use a hash tag for these commands to the better performance.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redis-clustering
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ezra Zygmuntowicz
|
@@ -13,10 +13,9 @@ authors:
|
|
13
13
|
- Michel Martens
|
14
14
|
- Damian Janowski
|
15
15
|
- Pieter Noordhuis
|
16
|
-
autorequire:
|
17
16
|
bindir: bin
|
18
17
|
cert_chain: []
|
19
|
-
date:
|
18
|
+
date: 2025-02-20 00:00:00.000000000 Z
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
22
21
|
name: redis
|
@@ -24,14 +23,14 @@ dependencies:
|
|
24
23
|
requirements:
|
25
24
|
- - '='
|
26
25
|
- !ruby/object:Gem::Version
|
27
|
-
version: 5.
|
26
|
+
version: 5.4.0
|
28
27
|
type: :runtime
|
29
28
|
prerelease: false
|
30
29
|
version_requirements: !ruby/object:Gem::Requirement
|
31
30
|
requirements:
|
32
31
|
- - '='
|
33
32
|
- !ruby/object:Gem::Version
|
34
|
-
version: 5.
|
33
|
+
version: 5.4.0
|
35
34
|
- !ruby/object:Gem::Dependency
|
36
35
|
name: redis-cluster-client
|
37
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -69,10 +68,9 @@ licenses:
|
|
69
68
|
metadata:
|
70
69
|
bug_tracker_uri: https://github.com/redis/redis-rb/issues
|
71
70
|
changelog_uri: https://github.com/redis/redis-rb/blob/master/cluster/CHANGELOG.md
|
72
|
-
documentation_uri: https://www.rubydoc.info/gems/redis/5.
|
71
|
+
documentation_uri: https://www.rubydoc.info/gems/redis/5.4.0
|
73
72
|
homepage_uri: https://github.com/redis/redis-rb/blob/master/cluster
|
74
|
-
source_code_uri: https://github.com/redis/redis-rb/tree/v5.
|
75
|
-
post_install_message:
|
73
|
+
source_code_uri: https://github.com/redis/redis-rb/tree/v5.4.0/cluster
|
76
74
|
rdoc_options: []
|
77
75
|
require_paths:
|
78
76
|
- lib
|
@@ -87,8 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
85
|
- !ruby/object:Gem::Version
|
88
86
|
version: '0'
|
89
87
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
88
|
+
rubygems_version: 3.6.2
|
92
89
|
specification_version: 4
|
93
90
|
summary: A Ruby client library for Redis Cluster
|
94
91
|
test_files: []
|