Search code examples
redisredis-cli

How to print all values in a list with redis-cli without knowing the size of the list?


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.


Solution

  • You use -1 to indicate end of list so:

    LRANGE key 0 -1
    

    would print all.