module Redis::Commands::Lists
def rpushx(key, value)
-
(Integer)
- the length of the list after the push operation
Parameters:
-
value
(String
) -- -
key
(String
) --
def rpushx(key, value) send_command([:rpushx, key, value]) end