X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/924aa408b99837036b679bd3895f836af6bc763f..df541beae372f40e9ce82a0780171e7d7a8e67de:/doc/ZrankCommand.html diff --git a/doc/ZrankCommand.html b/doc/ZrankCommand.html new file mode 100644 index 00000000..ccf8c23a --- /dev/null +++ b/doc/ZrankCommand.html @@ -0,0 +1,43 @@ + + + +
+ + + +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.+
+the rank of the element as an integer reply if the element exists. +A nil bulk reply if there is no such element. ++