module Redis::Commands::Hashes

def hmget(key, *fields, &blk)

Other tags:
    See: #mapped_hmget -

Returns:
  • (Array) - an array of values for the specified fields

Parameters:
  • fields (Array) -- array of fields
  • key (String) --
def hmget(key, *fields, &blk)
  fields.flatten!(1)
  send_command([:hmget, key].concat(fields), &blk)
end