X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/ed9b544e10b84cd43348ddfab7068b610a5df1f7..8bca8773b4e2542f9537b8403764867aa76273a5:/doc/ZrangebyscoreCommand.html diff --git a/doc/ZrangebyscoreCommand.html b/doc/ZrangebyscoreCommand.html new file mode 100644 index 00000000..6ffd87b3 --- /dev/null +++ b/doc/ZrangebyscoreCommand.html @@ -0,0 +1,41 @@ + + + +
+ + + +Return the all the elements in the sorted set at key with a score between_min_ and max (including elements with score equal to min or max).+
The elements having the same score are returned sorted lexicographically asASCII strings (this follows from a property of Redis sorted sets and does notinvolve further computation).+
Using the optional LIMIT it's possible to get only a range of the matchingelements in an SQL-alike way. Note that if offset is large the commandsneeds to traverse the list for offset elements and this adds up to theO(M) figure.+