redis.api

sortedsets

package sortedsets

Visibility
  1. Public
  2. All

Type Members

  1. case class Zadd[A](key: String, scoreMembers: Seq[(Double, A)])(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable

  2. case class Zcard(key: String) extends RedisCommandIntegerLong with Product with Serializable

  3. case class Zcount(key: String, min: Limit = ..., max: Limit = ...) extends RedisCommandIntegerLong with Product with Serializable

  4. case class Zincrby[A](key: String, increment: Double, member: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandBulkDouble with Product with Serializable

  5. case class Zinterstore(destination: String, key: String, keys: Seq[String], aggregate: Aggregate = redis.api.SUM) extends RedisCommandIntegerLong with Product with Serializable

  6. case class ZinterstoreWeighted(destination: String, keys: Seq[(String, Double)], aggregate: Aggregate = redis.api.SUM) extends RedisCommandIntegerLong with Product with Serializable

  7. case class Zrange(key: String, start: Long, stop: Long) extends RedisCommandMultiBulkSeqByteString with Product with Serializable

  8. case class ZrangeWithscores(key: String, start: Long, stop: Long) extends RedisCommandMultiBulkSeqByteStringDouble with Product with Serializable

  9. case class Zrangebyscore(key: String, min: Limit, max: Limit, limit: Option[(Long, Long)] = scala.None) extends RedisCommandMultiBulkSeqByteString with Product with Serializable

  10. case class ZrangebyscoreWithscores(key: String, min: Limit, max: Limit, limit: Option[(Long, Long)] = scala.None) extends RedisCommandMultiBulkSeqByteStringDouble with Product with Serializable

  11. case class Zrank[A](key: String, member: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandRedisReplyOptionLong with Product with Serializable

  12. case class Zrem[A](key: String, members: Seq[A])(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable

  13. case class Zremrangebyrank(key: String, start: Long, stop: Long) extends RedisCommandIntegerLong with Product with Serializable

  14. case class Zremrangebyscore(key: String, min: Limit, max: Limit) extends RedisCommandIntegerLong with Product with Serializable

  15. case class Zrevrange(key: String, start: Long, stop: Long) extends RedisCommandMultiBulkSeqByteString with Product with Serializable

  16. case class ZrevrangeWithscores(key: String, start: Long, stop: Long) extends RedisCommandMultiBulkSeqByteStringDouble with Product with Serializable

  17. case class Zrevrangebyscore(key: String, min: Limit, max: Limit, limit: Option[(Long, Long)] = scala.None) extends RedisCommandMultiBulkSeqByteString with Product with Serializable

  18. case class ZrevrangebyscoreWithscores(key: String, min: Limit, max: Limit, limit: Option[(Long, Long)] = scala.None) extends RedisCommandMultiBulkSeqByteStringDouble with Product with Serializable

  19. case class Zrevrank[A](key: String, member: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandRedisReplyOptionLong with Product with Serializable

  20. case class Zscore[A](key: String, member: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandBulkOptionDouble with Product with Serializable

  21. case class Zunionstore(destination: String, key: String, keys: Seq[String], aggregate: Aggregate = redis.api.SUM) extends RedisCommandIntegerLong with Product with Serializable

  22. case class ZunionstoreWeighted(destination: String, keys: Seq[(String, Double)], aggregate: Aggregate = redis.api.SUM) extends RedisCommandIntegerLong with Product with Serializable

Ungrouped