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

Method ZPOPMAX

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

Source from the content-addressed store, hash-verified

228}
229
230func (c Client) ZPOPMAX(key string, count int64) (membersWithScores map[string]float64, err error) {
231 return c.zPop(key, count, false)
232}
233
234func (c Client) ZPOPMIN(key string, count int64) (membersWithScores map[string]float64, err error) {
235 return c.zPop(key, count, true)

Callers 1

TestZPopsFunction · 0.80

Calls 1

zPopMethod · 0.95

Tested by 1

TestZPopsFunction · 0.64