In redis-cli, what is the command to print all the values in a list without knowing in advance the size of the list? I see lrange
, but it requires naming the start index and the end index.
You use -1 to indicate end of list so:
LRANGE key 0 -1
would print all.