redis and sorted_set | Mar 5, 2016
Adds all the specified members with the specified scores to the sorted set
stored at key
.
It is possible to specify multiple score / member pairs.
If a specified member is already a member of the sorted set, the score is
updated and the element reinserted at the right position to ensure the correct
ordering.
redis and set | Mar 4, 2016
This command is equal to SUNION
, 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 union of all the given sets.
More »redis and set | Mar 4, 2016
See SCAN
for SSCAN
documentation.
redis and set | Mar 4, 2016
Remove the specified members from the set stored at key
.
Specified members that are not a member of this set are ignored.
If key
does not exist, it is treated as an empty set and this command returns
0
.
redis and set | Mar 4, 2016
When called with just the key
argument, return a random element from the set value stored at key
.