Lists

📄️ BLPOPRemove and get the first element in a list, or block until one is available

📄️ BRPOPRemove and get the last element in a list, or block until one is available

📄️ BRPOPLPUSHPop an element from a list, push it to another list and return it; or block until one is available

📄️ LINDEXGet an element from a list by its index

📄️ LINSERTInsert an element before or after another element in a list

📄️ LLENGet the length of a list

📄️ LMOVEPop an element from a list, push it to another list and return it

📄️ LPOPRemove and get the first elements in a list

📄️ LPOSReturn the index of matching elements on a list

📄️ LPUSHPrepend one or multiple elements to a list

📄️ LPUSHXPrepend an element to a list, only if the list exists

📄️ LRANGEGet a range of elements from a list

📄️ LREMRemove elements from a list

📄️ LSETSet the value of an element in a list by its index

📄️ LTRIMTrim a list to the specified range

📄️ RPOPRemove and get the last elements in a list

📄️ RPOPLPUSHRemove the last element in a list, prepend it to another list and return it

📄️ RPUSHAppend one or multiple elements to a list

📄️ RPUSHXAppend an element to a list, only if the list exists