redis lists: trimtrim a list to the specified range
the key of the list in redis. the index to stop at. can be -1 or -2 redis sets: remRemove one member from a set
the key of the set in redis the value to add to the set. redis lists: setset the value of an element in a list by its index
the key of the list in redis. the index to update the element at. the new value of the element. redis sets: addadd one member to a set
the key of the set in redis the value to add to the set. redis lists: rpushxappend an element to a list, only if the list exists
the key of the list in redis. redis lists: rpopremove and get the last element in a list
the key of the list in redis. redis lists: rangeget a range of elements from a list
the key of the list in redis. the index to stop at. can be -1 or -2 redis lists: popRemove and get the first element in a list
the key of the list in redis. redis lists: get by indexGet an element from a list by its index
the key of the list in redis. the index to retrieve the element from. redis sets: popRemove and return one random member from a set
the key of the set in redis redis: incrementIncrements the number stored at key by one. If the key does not exist, it is set to 0 before performing the operation.
Name of the key to increment. Number to increment given cache key with. redis: decrementDecrements the number stored at key by one. If the key does not exist, it is set to 0 before performing the operation.
Name of the key to decrement. Number to decrement given the key with. redis: get ttlName of the key to update. Current time to live in seconds. redis: set ttlName of the key to update. Time to live in seconds.
Default:
60
redis lists: removeremoves the first count occurrences of elements equal to element
the key of the list in redis. number of elements to remove if found.
Default:
0
matching element to remove redis lists: insert at indexInsert an element before or after another element in a list
the key of the list in redis. determines if the element should be added before or after the other given element.
Default:
BEFORE
the new element to be added redis sets: is memberdetermine if a given value is a member of a set
the key of the set in redis the value to check in the set. redis lists: pushxprepend an element to a list, only if the list exists
the key of the list in redis. redis: deleteRemoves the specified key and their values.
The key to delete within our redis cache. redis: setSet key to hold the string value. If key already holds a value, it is overwritten, regardless of its type.
Value being set, will be stored value
regardless type. Set the specified expire time, in seconds..
Default:
none