redis 1.0.3 → 1.0.4
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.
- data/lib/redis.rb +1 -1
- data/lib/redis/client.rb +2 -1
- metadata +3 -3
data/lib/redis.rb
CHANGED
data/lib/redis/client.rb
CHANGED
@@ -387,9 +387,10 @@ class Redis
|
|
387
387
|
pipeline = true
|
388
388
|
else
|
389
389
|
argvv = [argvp]
|
390
|
+
pipeline = false
|
390
391
|
end
|
391
392
|
|
392
|
-
if @binary_keys or MULTI_BULK_COMMANDS[argvv[0][0].to_s]
|
393
|
+
if @binary_keys or pipeline or MULTI_BULK_COMMANDS[argvv[0][0].to_s]
|
393
394
|
command = ""
|
394
395
|
argvv.each do |argv|
|
395
396
|
command << "*#{argv.size}\r\n"
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 1.0.
|
8
|
+
- 4
|
9
|
+
version: 1.0.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Ezra Zygmuntowicz
|
@@ -19,7 +19,7 @@ autorequire: redis
|
|
19
19
|
bindir: bin
|
20
20
|
cert_chain: []
|
21
21
|
|
22
|
-
date: 2010-04-
|
22
|
+
date: 2010-04-05 00:00:00 -07:00
|
23
23
|
default_executable:
|
24
24
|
dependencies: []
|
25
25
|
|