# File lib/protocols/memcache.rb, line 71
71:       def get_hash *keys
72:         raise ArgumentError unless block_given?
73: 
74:         get *keys do |*values|
75:           yield keys.inject({}){ |hash, k| hash.update k => values[keys.index(k)] }
76:         end
77:       end