ZRevRangeByScore returns members in a sorted set within a range of scores in reverse order. Deprecated: Use ZRangeArgs with Rev and ByScore options instead as of Redis 6.2.0.
(ctx context.Context, key string, opt *ZRangeBy)
| 618 | // |
| 619 | // Deprecated: Use ZRangeArgs with Rev and ByScore options instead as of Redis 6.2.0. |
| 620 | func (c cmdable) ZRevRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmd { |
| 621 | return c.zRevRangeBy(ctx, "zrevrangebyscore", key, opt) |
| 622 | } |
| 623 | |
| 624 | // ZRevRangeByLex returns members in a sorted set within a lexicographical range in reverse order. |
| 625 | // |
nothing calls this directly
no test coverage detected