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