module Redis::Commands::Hashes

def hmset(key, *attrs)

Other tags:
    See: #mapped_hmset -

Returns:
  • (String) - `"OK"`

Parameters:
  • attrs (Array) -- array of fields and values
  • key (String) --
def hmset(key, *attrs)
  send_command([:hmset, key] + attrs)
end