9951 explained code solutions for 126 technologies


redisGet all keys of list in Redis


redis-cli lrange lst 0 -1ctrl + c
redis-cli

launch Redis CLI interface in interactive mode

lrange

returns all elements of a list within specified range

lst

name of the list to get elements from

0 -1

will return all elements of the selected list