Skip to main content

ZREVRANK

Syntax

ZREVRANK key member [WITHSCORE]

Module

sortedset

Categories

read slow sortedset

Description

Returns the rank of the member in the sorted set in reverse order. WITHSCORE modifies the result to include the score.

Options

  • WITHSCORE - Determines whether to return the score along with the member value.

Examples

Get the rank of the specified member in the sorted set:

vault, err := echovault.NewEchoVault()
if err != nil {
log.Fatal(err)
}
member, err := vault.ZRevRank("key", "member", true)