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

Method ZPOPMIN

sorted_sets.go:234–236  ·  view source on GitHub ↗
(key string, count int64)

Source from the content-addressed store, hash-verified

232}
233
234func (c Client) ZPOPMIN(key string, count int64) (membersWithScores map[string]float64, err error) {
235 return c.zPop(key, count, true)
236}
237
238var negInf = zScore{math.Inf(-1)}
239var posInf = zScore{math.Inf(+1)}

Callers 1

TestZPopsFunction · 0.80

Calls 1

zPopMethod · 0.95

Tested by 1

TestZPopsFunction · 0.64