module Redis::Commands::Hashes

def mapped_hmset(key, hash)

Other tags:
    See: #hmset -

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

Parameters:
  • hash (Hash) -- a non-empty hash with fields mapping to values
  • key (String) --
def mapped_hmset(key, hash)
  hmset(key, hash.flatten)
end