(key string, min, max float64, offset, count int64)
| 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) |
| 298 | } |
| 299 | |
| 300 | func (c Client) zGeneralRange(key string, |
| 301 | start rangeCap, stop rangeCap, |