module Redis::Commands::Lists

def lpushx(key, value)

Returns:
  • (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