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