module EventMachine::Protocols::Memcache
Public Instance Methods
get_hash(*keys)
click to toggle source
# File lib/em-synchrony/em-memcache.rb, line 15 def get_hash(*keys) index = 0 get(*keys).inject({}) { |h,v| h[keys[index]] = v; index += 1; h } end
Also aliased as: aget_hash