redis 4.5.1 → 4.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +75 -0
- data/README.md +25 -10
- data/lib/redis/client.rb +19 -27
- data/lib/redis/cluster/command.rb +4 -6
- data/lib/redis/cluster/command_loader.rb +5 -5
- data/lib/redis/cluster/node.rb +12 -0
- data/lib/redis/cluster/node_loader.rb +8 -11
- data/lib/redis/cluster/option.rb +10 -3
- data/lib/redis/cluster/slot_loader.rb +9 -12
- data/lib/redis/cluster.rb +24 -0
- data/lib/redis/commands/bitmaps.rb +63 -0
- data/lib/redis/commands/cluster.rb +45 -0
- data/lib/redis/commands/connection.rb +58 -0
- data/lib/redis/commands/geo.rb +84 -0
- data/lib/redis/commands/hashes.rb +251 -0
- data/lib/redis/commands/hyper_log_log.rb +37 -0
- data/lib/redis/commands/keys.rb +455 -0
- data/lib/redis/commands/lists.rb +290 -0
- data/lib/redis/commands/pubsub.rb +72 -0
- data/lib/redis/commands/scripting.rb +114 -0
- data/lib/redis/commands/server.rb +188 -0
- data/lib/redis/commands/sets.rb +223 -0
- data/lib/redis/commands/sorted_sets.rb +812 -0
- data/lib/redis/commands/streams.rb +382 -0
- data/lib/redis/commands/strings.rb +313 -0
- data/lib/redis/commands/transactions.rb +139 -0
- data/lib/redis/commands.rb +240 -0
- data/lib/redis/connection/hiredis.rb +3 -2
- data/lib/redis/connection/ruby.rb +14 -5
- data/lib/redis/connection/synchrony.rb +10 -8
- data/lib/redis/connection.rb +1 -1
- data/lib/redis/distributed.rb +71 -23
- data/lib/redis/errors.rb +9 -0
- data/lib/redis/pipeline.rb +128 -3
- data/lib/redis/version.rb +1 -1
- data/lib/redis.rb +138 -3673
- metadata +21 -4
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ezra Zygmuntowicz
|
@@ -16,7 +16,7 @@ authors:
|
|
16
16
|
autorequire:
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
|
-
date:
|
19
|
+
date: 2023-02-10 00:00:00.000000000 Z
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
name: em-synchrony
|
@@ -84,6 +84,23 @@ files:
|
|
84
84
|
- lib/redis/cluster/option.rb
|
85
85
|
- lib/redis/cluster/slot.rb
|
86
86
|
- lib/redis/cluster/slot_loader.rb
|
87
|
+
- lib/redis/commands.rb
|
88
|
+
- lib/redis/commands/bitmaps.rb
|
89
|
+
- lib/redis/commands/cluster.rb
|
90
|
+
- lib/redis/commands/connection.rb
|
91
|
+
- lib/redis/commands/geo.rb
|
92
|
+
- lib/redis/commands/hashes.rb
|
93
|
+
- lib/redis/commands/hyper_log_log.rb
|
94
|
+
- lib/redis/commands/keys.rb
|
95
|
+
- lib/redis/commands/lists.rb
|
96
|
+
- lib/redis/commands/pubsub.rb
|
97
|
+
- lib/redis/commands/scripting.rb
|
98
|
+
- lib/redis/commands/server.rb
|
99
|
+
- lib/redis/commands/sets.rb
|
100
|
+
- lib/redis/commands/sorted_sets.rb
|
101
|
+
- lib/redis/commands/streams.rb
|
102
|
+
- lib/redis/commands/strings.rb
|
103
|
+
- lib/redis/commands/transactions.rb
|
87
104
|
- lib/redis/connection.rb
|
88
105
|
- lib/redis/connection/command_helper.rb
|
89
106
|
- lib/redis/connection/hiredis.rb
|
@@ -102,9 +119,9 @@ licenses:
|
|
102
119
|
metadata:
|
103
120
|
bug_tracker_uri: https://github.com/redis/redis-rb/issues
|
104
121
|
changelog_uri: https://github.com/redis/redis-rb/blob/master/CHANGELOG.md
|
105
|
-
documentation_uri: https://www.rubydoc.info/gems/redis/4.
|
122
|
+
documentation_uri: https://www.rubydoc.info/gems/redis/4.8.1
|
106
123
|
homepage_uri: https://github.com/redis/redis-rb
|
107
|
-
source_code_uri: https://github.com/redis/redis-rb/tree/v4.
|
124
|
+
source_code_uri: https://github.com/redis/redis-rb/tree/v4.8.1
|
108
125
|
post_install_message:
|
109
126
|
rdoc_options: []
|
110
127
|
require_paths:
|