redisZRangeByScore
Return the all the elements in the sorted set at key with a score between
min
and max
(including elements with score equal to
min
or max
).
redisZRangeByScore(key, min, max, offset = NULL, count = NULL, withscores = FALSE, ...)
key |
The set name. |
min |
Minimum score. |
max |
Maximum score. |
offset |
Limit the results by excluding the first |
count |
Limit the results to the first |
withscores |
Also return the scores. |
... |
Optional additional arguments. Specify |
The offset
and count
arguments must both be specified if used.
See the Redis documentation for more information.
B. W. Lewis
http://redis.io/commands
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.