KellyMahan-memcachedb-client 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/History.txt +3 -0
  2. data/lib/memcache_db.rb +2 -2
  3. metadata +1 -1
@@ -1,3 +1,6 @@
1
+ = 1.1.5
2
+ fixed issue with rget and namespace problem
3
+
1
4
  = 1.1.4
2
5
 
3
6
  get_range(key1, key2, start_exclude=0, end_exclude=0, limit=100)
@@ -35,7 +35,7 @@ class MemCacheDb
35
35
 
36
36
  # The version of MemCacheDb you are using.
37
37
 
38
- VERSION = '1.1.4'
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"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: KellyMahan-memcachedb-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kelly Mahan