tokyo_cache_cow 0.0.8 → 0.0.9
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/VERSION.yml
CHANGED
@@ -103,7 +103,7 @@ class TokyoCacheCow
|
|
103
103
|
next unless validate_key(k)
|
104
104
|
if special_match_char && k.index(special_match_char) == 0
|
105
105
|
k.slice!(0, special_match_char.size)
|
106
|
-
value = @cache.
|
106
|
+
value = @cache.get_match_list(k)
|
107
107
|
send_data(GetValueReply % [k, "0", value.size])
|
108
108
|
send_data(value)
|
109
109
|
send_data(Terminator)
|