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

Method ZRANGEBYLEX

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

Source from the content-addressed store, hash-verified

290}
291
292func (c Client) ZRANGEBYLEX(key string, min, max string, offset, count int64) (membersWithScores map[string]float64, err error) {
293 return c.zGeneralRange(key, zLex{min}, zLex{max}, offset, count, true, c.sk)
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)

Callers 2

ZREMRANGEBYLEXMethod · 0.95
TestZRangesFunction · 0.80

Calls 1

zGeneralRangeMethod · 0.95

Tested by 1

TestZRangesFunction · 0.64