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

Method ZRANGEBYSCORE

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

Source from the content-addressed store, hash-verified

294}
295
296func (c Client) ZRANGEBYSCORE(key string, min, max float64, offset, count int64) (membersWithScores map[string]float64, err error) {
297 return c.zGeneralRange(key, zScore{min}, zScore{max}, offset, count, true, c.skN)
298}
299
300func (c Client) zGeneralRange(key string,
301 start rangeCap, stop rangeCap,

Callers 5

ZREMRANGEBYSCOREMethod · 0.95
ZUNIONMethod · 0.95
ZINTERMethod · 0.95
TestZRangesFunction · 0.80
TestZAggregationsFunction · 0.80

Calls 1

zGeneralRangeMethod · 0.95

Tested by 2

TestZRangesFunction · 0.64
TestZAggregationsFunction · 0.64