(key string, min, max string, offset, count int64)
| 290 | } |
| 291 | |
| 292 | func (c Client) ZRANGEBYLEX(key string, min, max string, offset, count int64) (membersWithScores map[string]float64, err error) { |
| 293 | return c.zGeneralRange(key, zLex{min}, zLex{max}, offset, count, true, c.sk) |
| 294 | } |
| 295 | |
| 296 | func (c Client) ZRANGEBYSCORE(key string, min, max float64, offset, count int64) (membersWithScores map[string]float64, err error) { |
| 297 | return c.zGeneralRange(key, zScore{min}, zScore{max}, offset, count, true, c.skN) |