ZRANGEBYSCOREReturn members with scores within the given bounds.
| 语法 | ZRANGEBYSCORE key min max [WITHSCORES] [LIMIT offset count] |
| 分组 | zset |
| 参数个数 | -4 |
| 起始版本 | 1.0.0 |
| 标志 | readonly |
| 复杂度 | O(log N + M) — a rank descent seeks to the score bound, then only the M in-range members are walked; LIMIT is still applied after the match set is materialised, so it bounds the reply, not the walk |
| Redis 兼容性 | full |