2 <!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01//EN">
5 <link type=
"text/css" rel=
"stylesheet" href=
"style.css" />
12 <img style=
"border:none" alt=
"Redis Documentation" src=
"redis.png">
16 <div id=
"pagecontent">
18 <!-- This is a (PRE) block. Make sure it's left aligned or your toc title will be off. -->
19 <b>ZrankCommand: Contents
</b><br> <a href=
"#ZRANK _key_ _member_ (Redis >">ZRANK _key_ _member_ (Redis
></a><br> <a href=
"#ZREVRANK _key_ _member_ (Redis >">ZREVRANK _key_ _member_ (Redis
></a><br> <a href=
"#Return value">Return value
</a>
22 <h1 class=
"wikiname">ZrankCommand
</h1>
30 <h1><a name=
"ZRANK _key_ _member_ (Redis >">ZRANK _key_ _member_ (Redis
></a></h1> 1.3.4) =
31 <h1><a name=
"ZREVRANK _key_ _member_ (Redis >">ZREVRANK _key_ _member_ (Redis
></a></h1> 1.3.4) =
32 <i>Time complexity: O(log(N))
</i><blockquote>ZRANK returns the rank of the member in the sorted set, with scores ordered from low to high. ZREVRANK returns the rank with scores ordered from high to low. When the given member does not exist in the sorted set, the special value 'nil' is returned. The returned rank (or index) of the member is
0-based for both commands.
</blockquote>
33 <h2><a name=
"Return value">Return value
</a></h2><a href=
"ReplyTypes.html">Bulk reply
</a>, specifically:
<br/><br/><pre class=
"codeblock python" name=
"code">
34 the rank (an integer number) represented as an string.