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

Method ZRANK

sorted_sets.go:377–379  ·  view source on GitHub ↗
(key string, member string)

Source from the content-addressed store, hash-verified

375}
376
377func (c Client) ZRANK(key string, member string) (rank int64, found bool, err error) {
378 return c.zRank(key, member, true)
379}
380
381func (c Client) zRank(key string, member string, forward bool) (rank int64, ok bool, err error) {
382 score, ok, err := c.ZSCORE(key, member)

Callers 1

TestZCountsFunction · 0.80

Calls 1

zRankMethod · 0.95

Tested by 1

TestZCountsFunction · 0.64