What does the range 0 -1 mean in LRANGE mylist 0 -1?
0 -1
LRANGE mylist 0 -1
Return no elements because -1 is smaller than 0.
-1
0
Delete every element in the list.
Return elements from the first position through the last position.
Return only the element at index 0.