(key string, max, min string, offset, count int64)
| 460 | } |
| 461 | |
| 462 | func (c Client) ZREVRANGEBYLEX(key string, max, min string, offset, count int64) (membersWithScores map[string]float64, err error) { |
| 463 | return c.zGeneralRange(key, zLex{min}, zLex{max}, offset, count, false, c.sk) |
| 464 | } |
| 465 | |
| 466 | func (c Client) ZREVRANGEBYSCORE(key string, max, min float64, offset, count int64) (membersWithScores map[string]float64, err error) { |
| 467 | return c.zGeneralRange(key, zScore{min}, zScore{max}, offset, count, false, c.skN) |