ZREVRANGEBYSCORE [WITHSCORES] [LIMIT offset count] */
| 3267 | |
| 3268 | /* ZREVRANGEBYSCORE <key> <min> <max> [WITHSCORES] [LIMIT offset count] */ |
| 3269 | void zrevrangebyscoreCommand(client *c) { |
| 3270 | zrange_result_handler handler; |
| 3271 | zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT); |
| 3272 | zrangeGenericCommand(&handler, 1, 0, ZRANGE_SCORE, ZRANGE_DIRECTION_REVERSE); |
| 3273 | } |
| 3274 | |
| 3275 | void zcountCommand(client *c) { |
| 3276 | robj *key = c->argv[1]; |
nothing calls this directly
no test coverage detected