ZRevRangeByLex returns members in a sorted set within a lexicographical range in reverse order. Deprecated: Use ZRangeArgs with Rev and ByLex options instead as of Redis 6.2.0.
(ctx context.Context, key string, opt *ZRangeBy)
| 625 | // |
| 626 | // Deprecated: Use ZRangeArgs with Rev and ByLex options instead as of Redis 6.2.0. |
| 627 | func (c cmdable) ZRevRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmd { |
| 628 | return c.zRevRangeBy(ctx, "zrevrangebylex", key, opt) |
| 629 | } |
| 630 | |
| 631 | func (c cmdable) ZRevRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd { |
| 632 | args := []interface{}{"zrevrangebyscore", key, opt.Max, opt.Min, "withscores"} |
nothing calls this directly
no test coverage detected