Redis lists are ordered collections of strings (implemented as linked lists) with fast push/pop at both ends. They're commonly used to implement queues and stacks — a simple, popular way to use Redis for job processing and ordered data.
List operations
LPUSH mylist
RPUSH mylist
LPOP mylist
RPOP mylist
LRANGE mylist 0 -1
LLEN mylist
LINDEX mylist 0
