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.
How to print all values in a list with redis-cli without knowing the size of the list?
22.2k views Asked by einnocent At
2
You use -1 to indicate end of list so:
would print all.