redis and sorted_set | Mar 5, 2016
Returns the specified range of elements in the sorted set stored at key
.
The elements are considered to be ordered from the lowest to the highest score.
Lexicographical order is used for elements with equal score.
redis and sorted_set | Mar 5, 2016
When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command returns the number of elements in the sorted set at key
with a value between min
and max
.
redis and sorted_set | Mar 5, 2016
Computes the intersection of numkeys
sorted sets given by the specified keys,
and stores the result in destination
.
It is mandatory to provide the number of input keys (numkeys
) before passing
the input keys and the other (optional) arguments.
redis and sorted_set | Mar 5, 2016
Increments the score of member
in the sorted set stored at key
by
increment
.
If member
does not exist in the sorted set, it is added with increment
as
its score (as if its previous score was 0.0
).
If key
does not exist, a new sorted set with the specified member
as its
sole member is created.
redis and sorted_set | Mar 5, 2016
Returns the number of elements in the sorted set at key
with a score between
min
and max
.
redis and sorted_set | Mar 5, 2016
Returns the sorted set cardinality (number of elements) of the sorted set stored
at key
.