class Redis

def hmset(key, *attrs)

Other tags:
    See: #mapped_hmset -

Parameters:
  • attrs (Array) -- array of fields and values
  • key (String) --
def hmset(key, *attrs)
  synchronize do |client|
    client.call [:hmset, key, *attrs]
  end
end