KellyMahan-memcachedb-client 1.1.4 → 1.1.5
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/History.txt +3 -0
- data/lib/memcache_db.rb +2 -2
- metadata +1 -1
data/History.txt
CHANGED
data/lib/memcache_db.rb
CHANGED
@@ -35,7 +35,7 @@ class MemCacheDb
|
|
35
35
|
|
36
36
|
# The version of MemCacheDb you are using.
|
37
37
|
|
38
|
-
VERSION = '1.1.
|
38
|
+
VERSION = '1.1.5'
|
39
39
|
##
|
40
40
|
# Default options for the cache object.
|
41
41
|
|
@@ -656,7 +656,7 @@ class MemCacheDb
|
|
656
656
|
|
657
657
|
with_socket_management(server) do |socket|
|
658
658
|
values = {}
|
659
|
-
socket.write "rget #{start_key} #{end_key} #{start_exclude} #{end_exclude} #{max}\r\n"
|
659
|
+
socket.write "rget #{make_cache_key(start_key)} #{make_cache_key(end_key)} #{start_exclude} #{end_exclude} #{max}\r\n"
|
660
660
|
|
661
661
|
while keyline = socket.gets do
|
662
662
|
return values if keyline == "END\r\n"
|