redis 4.5.1 → 4.6.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/CHANGELOG.md +51 -0
- data/README.md +10 -10
- data/lib/redis/client.rb +14 -13
- data/lib/redis/cluster/command.rb +4 -6
- data/lib/redis/cluster/node.rb +12 -0
- 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 +411 -0
- data/lib/redis/commands/lists.rb +289 -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 +207 -0
- data/lib/redis/commands/sorted_sets.rb +804 -0
- data/lib/redis/commands/streams.rb +382 -0
- data/lib/redis/commands/strings.rb +313 -0
- data/lib/redis/commands/transactions.rb +92 -0
- data/lib/redis/commands.rb +242 -0
- data/lib/redis/connection/hiredis.rb +3 -2
- data/lib/redis/connection/ruby.rb +8 -5
- data/lib/redis/connection/synchrony.rb +10 -8
- data/lib/redis/connection.rb +1 -1
- data/lib/redis/distributed.rb +46 -9
- data/lib/redis/pipeline.rb +95 -2
- data/lib/redis/version.rb +1 -1
- data/lib/redis.rb +133 -3675
- 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.6.0
|
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: 2022-02-02 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.6.0
|
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.6.0
|
108
125
|
post_install_message:
|
109
126
|
rdoc_options: []
|
110
127
|
require_paths:
|