arthurnn / memcached

A Ruby interface to the libmemcached C client
Academic Free License v3.0
432 stars 125 forks source link

get_multi bug with prefix_key, v.1.2.5 #43

Closed kostya closed 13 years ago

kostya commented 13 years ago

s = Memcached.new "localhost:11211", {:binary_protocol => true, :prefix_key => "app-"} s.set "key", 1, 0 s.set "key2", 2, 0

s.get(["key", "key2"]) => {"app-key2"=>2, "app-key"=>1}

evan commented 13 years ago

Oh, I see. Can you submit some failing tests?