redis and set | Mar 4, 2016
This command is equal to SDIFF
, but instead of returning the resulting set, it
is stored in destination
.
redis and set | Mar 4, 2016
Returns the members of the set resulting from the difference between the first set and all the successive sets.
More »redis and set | Mar 4, 2016
Returns the set cardinality (number of elements) of the set stored at key
.
redis and set | Mar 4, 2016
Add the specified members to the set stored at key
.
Specified members that are already a member of this set are ignored.
If key
does not exist, a new set is created before adding the specified
members.
redis and list | Mar 3, 2016
Inserts value
at the tail of the list stored at key
, only if key
already
exists and holds a list.
In contrary to RPUSH
, no operation will be performed when key
does not yet
exist.
redis and list | Mar 3, 2016
Insert all the specified values at the tail of the list stored at key
.
If key
does not exist, it is created as empty list before performing the push
operation.
When key
holds a value that is not a list, an error is returned.