redis and set | Mar 4, 2016
Removes and returns one or more random elements from the set value store at key
.
redis and set | Mar 4, 2016
Move member
from the set at source
to the set at destination
.
This operation is atomic.
In every given moment the element will appear to be a member of source
or
destination
for other clients.
redis and set | Mar 4, 2016
Returns all the members of the set value stored at key
.
redis and set | Mar 4, 2016
Returns if member
is a member of the set stored at key
.
redis and set | Mar 4, 2016
This command is equal to SINTER
, 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 intersection of all the given sets.
More »