LPUSH key element [element …]

    Time complexity: O(1) for each element added, so O(N) to add N elements when the command is called with multiple arguments.

    It is possible to push multiple elements using a single command call just specifying multiple arguments at the end of the command. Elements are inserted one after the other to the head of the list, from the leftmost element to the rightmost element. So for instance the command will result into a list containing c as first element, b as second element and as third element.

    redis> LPUSH mylist "world"

    redis> LRANGE mylist 0 -1

    redis>