RedisDatabase.zrangeByScore - multiple declarations
- Function RedisDatabase.zrangeByScore
- Function RedisDatabase.zrangeByScore
Function RedisDatabase.zrangeByScore
Returns all the elements in the sorted set
at key
with a score between start
and end
inclusively
Prototype
RedisReply!T zrangeByScore(T, string RNG)(
string key,
double start,
double end,
bool with_scores = false
)
if (isValidRedisValueType!T);
Function RedisDatabase.zrangeByScore
Computes an internal list of elements in the sorted set
at key
with a score between start
and end
inclusively,
and returns a range subselection similar to results[offset
.. offset
+count
]
Prototype
RedisReply!T zrangeByScore(T, string RNG)(
string key,
double start,
double end,
long offset,
long count,
bool with_scores = false
)
if (isValidRedisValueType!T);
Authors
Jan Krüger, Sönke Ludwig, Michael Eisendle, Etienne Cimon
Copyright
© 2012-2014 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.