ZRANGEBYSCORE [WITHSCORES] [LIMIT offset count] */
| 3260 | |
| 3261 | /* ZRANGEBYSCORE <key> <min> <max> [WITHSCORES] [LIMIT offset count] */ |
| 3262 | void zrangebyscoreCommand(client *c) { |
| 3263 | zrange_result_handler handler; |
| 3264 | zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT); |
| 3265 | zrangeGenericCommand(&handler, 1, 0, ZRANGE_SCORE, ZRANGE_DIRECTION_FORWARD); |
| 3266 | } |
| 3267 | |
| 3268 | /* ZREVRANGEBYSCORE <key> <min> <max> [WITHSCORES] [LIMIT offset count] */ |
| 3269 | void zrevrangebyscoreCommand(client *c) { |
nothing calls this directly
no test coverage detected