Lists
📄️ BLPOP Remove and get the first element in a list, or block until one is available
📄️ BRPOP Remove and get the last element in a list, or block until one is available
📄️ LINDEX Get an element from a list by its index
📄️ LINSERT Insert an element before or after another element in a list
📄️ LLEN Get the length of a list
📄️ LMOVE Pop an element from a list, push it to another list and return it
📄️ LPOP Remove and get the first elements in a list
📄️ LPOS Return the index of matching elements on a list
📄️ LPUSH Prepend one or multiple elements to a list
📄️ LPUSHX Prepend an element to a list, only if the list exists
📄️ LRANGE Get a range of elements from a list
📄️ LREM Remove elements from a list
📄️ LSET Set the value of an element in a list by its index
📄️ LTRIM Trim a list to the specified range
📄️ RPOP Remove and get the last elements in a list
📄️ RPOPLPUSH Remove the last element in a list, prepend it to another list and return it
📄️ RPUSH Append one or multiple elements to a list
📄️ RPUSHX Append an element to a list, only if the list exists