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

Method ZREVRANGEBYLEX

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

Source from the content-addressed store, hash-verified

460}
461
462func (c Client) ZREVRANGEBYLEX(key string, max, min string, offset, count int64) (membersWithScores map[string]float64, err error) {
463 return c.zGeneralRange(key, zLex{min}, zLex{max}, offset, count, false, c.sk)
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)

Callers 1

TestZRangesFunction · 0.80

Calls 1

zGeneralRangeMethod · 0.95

Tested by 1

TestZRangesFunction · 0.64