class Redis
def hmset(key, *attrs)
- 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
attrs
(Array
)
-- array of fields and values
key
(String
)
--
def hmset(key, *attrs) synchronize do |client| client.call [:hmset, key, *attrs] end end