Blocks within redis lists
List of all the block within the redis lists
group. If you're running an older core version, there may be groups listed here that are not available to you (yet).
value
v13.0.7
Remove and get the first element in a list
push condition
v13.0.7
prepend one element to a list
range array
v13.0.7
get a range of elements from a list
rpush condition
v13.0.7
append one or multiple elements to a list
rpop value
v13.0.7
remove and get the last element in a list
rpushx condition
v13.0.7
append an element to a list, only if the list exists
push array condition
v13.0.7
prepend multiple elements to a list
len number
v13.0.7
get the length of a list
get by index value
v13.0.7
Get an element from a list by its index
insert at index number
v13.0.7
Insert an element before or after another element in a list
set value
v13.0.7
set the value of an element in a list by its index
trim value
v13.0.7
trim a list to the specified range
pushx condition
v13.0.7
prepend an element to a list, only if the list exists
remove number
v13.0.7
removes the first count occurrences of elements equal to element
Back to
redis
Return to the main group to view all sub-groups