module Redis::Commands::Lists
def lpush(key, value)
-
(Integer)
- the length of the list after the push operation
Parameters:
-
value
(String, Array
) -- string value, or array of string values to push -
key
(String
) --
def lpush(key, value) send_command([:lpush, key, value]) end