(key string, minScore, maxScore float64)
| 121 | } |
| 122 | |
| 123 | func (c Client) ZCOUNT(key string, minScore, maxScore float64) (count int64, err error) { |
| 124 | return c.zGeneralCount(key, zScore{minScore}, zScore{maxScore}, c.skN) |
| 125 | } |
| 126 | |
| 127 | func (c Client) zGeneralCount(key string, min rangeCap, max rangeCap, attribute string) (count int64, err error) { |
| 128 | builder := newExpresionBuilder() |