SADD key member [member …] *Return value *History *Examples SADD key member [member …] Available since 1.0.0. Time complexity: O(1) for each element added, so O(N) to add...
RPUSHX key element [element …] *Return value *History *Examples RPUSHX key element [element …] Available since 2.2.0. Time complexity: O(1) for each element added, so O(N...
RPUSH key element [element …] *Return value *History *Examples RPUSH key element [element …] Available since 1.0.0. Time complexity: O(1) for each element added, so O(N) ...
PSETEX key milliseconds value *Examples PSETEX key milliseconds value Available since 2.6.0. Time complexity: O(1) PSETEX works exactly like SETEX with the sole differen...
LPUSH key element [element …] *Return value *History *Examples LPUSH key element [element …] Available since 1.0.0. Time complexity: O(1) for each element added, so O(N) ...
HINCRBY key field increment *Return value *Examples HINCRBY key field increment Available since 2.0.0. Time complexity: O(1) Increments the number stored at field in the...
HDEL key field [field …] *Return value *History *Examples HDEL key field [field …] Available since 2.0.0. Time complexity: O(N) where N is the number of fields to be remo...
GETRANGE key start end *Return value *Examples GETRANGE key start end Available since 2.4.0. Time complexity: O(N) where N is the length of the returned string. The comple...