# File lib/em/protocols/memcache.rb, line 87
87:       def get_hash *keys
88:         raise ArgumentError unless block_given?
89: 
90:         get *keys do |*values|
91:           yield keys.inject({}){ |hash, k| hash.update k => values[keys.index(k)] }
92:         end
93:       end