class Redis
def rpushx(key, value)
-
(Fixnum)
- the length of the list after the push operation
Parameters:
-
value
(String
) -- -
key
(String
) --
def rpushx(key, value) synchronize do |client| client.call [:rpushx, key, value] end end