ZRANGEBYLEX [LIMIT offset count] */
| 3545 | |
| 3546 | /* ZRANGEBYLEX <key> <min> <max> [LIMIT offset count] */ |
| 3547 | void zrangebylexCommand(client *c) { |
| 3548 | zrange_result_handler handler; |
| 3549 | zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT); |
| 3550 | zrangeGenericCommand(&handler, 1, 0, ZRANGE_LEX, ZRANGE_DIRECTION_FORWARD); |
| 3551 | } |
| 3552 | |
| 3553 | /* ZREVRANGEBYLEX <key> <min> <max> [LIMIT offset count] */ |
| 3554 | void zrevrangebylexCommand(client *c) { |
nothing calls this directly
no test coverage detected