MCPcopy Create free account
hub / github.com/dbProjectRED/redimo.go / ZLEXCOUNT

Method ZLEXCOUNT

sorted_sets.go:226–228  ·  view source on GitHub ↗
(key string, min string, max string)

Source from the content-addressed store, hash-verified

224}
225
226func (c Client) ZLEXCOUNT(key string, min string, max string) (count int64, err error) {
227 return c.zGeneralCount(key, zLex{min}, zLex{max}, c.sk)
228}
229
230func (c Client) ZPOPMAX(key string, count int64) (membersWithScores map[string]float64, err error) {
231 return c.zPop(key, count, false)

Callers 1

TestZCountsFunction · 0.80

Calls 1

zGeneralCountMethod · 0.95

Tested by 1

TestZCountsFunction · 0.64