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

Method ZREVRANGEBYSCORE

sorted_sets.go:466–468  ·  view source on GitHub ↗
(key string, max, min float64, offset, count int64)

Source from the content-addressed store, hash-verified

464}
465
466func (c Client) ZREVRANGEBYSCORE(key string, max, min float64, offset, count int64) (membersWithScores map[string]float64, err error) {
467 return c.zGeneralRange(key, zScore{min}, zScore{max}, offset, count, false, c.skN)
468}
469
470func (c Client) ZREVRANK(key string, member string) (rank int64, found bool, err error) {
471 return c.zRank(key, member, false)

Callers 1

TestZRangesFunction · 0.80

Calls 1

zGeneralRangeMethod · 0.95

Tested by 1

TestZRangesFunction · 0.64