LPOP key

    Time complexity: O(1)

    Removes and returns the first element of the list stored at .

    *Examples

    redis> RPUSH mylist "one"

    redis> RPUSH mylist "two"

    redis> LPOP mylist

    redis> LRANGE mylist 0 -1

    redis>