ZRANGE [BYSCORE | BYLEX] [REV] [WITHSCORES] [LIMIT offset count] */
| 3127 | |
| 3128 | /* ZRANGE <key> <min> <max> [BYSCORE | BYLEX] [REV] [WITHSCORES] [LIMIT offset count] */ |
| 3129 | void zrangeCommand(client *c) { |
| 3130 | zrange_result_handler handler; |
| 3131 | zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT); |
| 3132 | zrangeGenericCommand(&handler, 1, 0, ZRANGE_AUTO, ZRANGE_DIRECTION_AUTO); |
| 3133 | } |
| 3134 | |
| 3135 | /* ZREVRANGE <key> <min> <max> [WITHSCORES] */ |
| 3136 | void zrevrangeCommand(client *c) { |
nothing calls this directly
no test coverage detected