List
LPUSHX
Push an element at the head of the list only if the list exists.
Arguments
keybodystrrequired
The key of the list.
elementsbody*List[str]required
One or more elements to push at the head of the list.
Response
numberrequired
The length of the list after the push operation.
0 if the list did not exist and thus no element was pushed.
Example
# Initialize the listredis.lpush("mylist", "one")assert redis.lpushx("mylist", "two", "three") == 3assert lrange("mylist", 0, -1) == ["three", "two", "one"]# Non existing keyassert redis.lpushx("non-existent-list", "one") == 0