redis and sorted_set | Mar 5, 2016
See SCAN
for ZSCAN
documentation.
redis and sorted_set | Mar 5, 2016
Returns the rank of member
in the sorted set stored at key
, with the scores
ordered from high to low.
The rank (or index) is 0-based, which means that the member with the highest
score has rank 0
.
redis and sorted_set | Mar 5, 2016
Returns all the elements in the sorted set at key
with a score between max
and min
(including elements with score equal to max
or min
).
In contrary to the default ordering of sorted sets, for this command the
elements are considered to be ordered from high to low scores.
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 all the elements in the sorted set at key
with a value between max
and min
.
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 highest to the lowest score.
Descending lexicographical order is used for elements with equal score.
redis and sorted_set | Mar 5, 2016
Removes all elements in the sorted set stored at key
with a score between
min
and max
(inclusive).