vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

RedisDatabase.zrevRangeByScore - multiple declarations

Function RedisDatabase.zrevRangeByScore

Returns all the elements in the sorted set at key with a score between max and min (including elements with score equal to max or min).

RedisReply!T zrevRangeByScore(T, string RNG = "[]") (
  string key,
  double min,
  double max,
  bool with_scores = false
)
if (isValidRedisValueType!T);

Function RedisDatabase.zrevRangeByScore

Computes an internal list of elements in the sorted set at key with a score between max and min, and returns a window of elements selected in a way equivalent to results[offset .. offset + count]

RedisReply!T zrevRangeByScore(T, string RNG = "[]") (
  string key,
  double min,
  double max,
  long offset,
  long count,
  bool with_scores = false
)
if (isValidRedisValueType!T);
Authors

Jan Krüger, Sönke Ludwig, Michael Eisendle, Etienne Cimon

Copyright

© 2012-2016 Sönke Ludwig

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.