ZRANGEBYSCOREReturn members with scores within the given bounds.
| Syntax | ZRANGEBYSCORE key min max [WITHSCORES] [LIMIT offset count] |
| Group | zset |
| Arity | -4 |
| Since | 1.0.0 |
| Flags | readonly |
| Complexity | 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 compatibility | full |