redis.api

sortedsets

package sortedsets

Visibility
  1. Public
  2. All

Type Members

  1. case class Zadd[K, V](key: K, scoreMembers: Seq[(Double, V)])(implicit keySeria: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerLong with Product with Serializable

  2. case class Zcard[K](key: K)(implicit keySeria: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  3. case class Zcount[K](key: K, min: Limit = ..., max: Limit = ...)(implicit keySeria: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  4. case class Zincrby[K, V](key: K, increment: Double, member: V)(implicit keySeria: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandBulkDouble with Product with Serializable

  5. case class Zinterstore[KD, K, KK](destination: KD, key: K, keys: Seq[KK], aggregate: Aggregate = redis.api.SUM)(implicit evidence$1: ByteStringSerializer[KD], evidence$2: ByteStringSerializer[K], evidence$3: ByteStringSerializer[KK]) extends RedisCommandIntegerLong with Product with Serializable

  6. case class ZinterstoreWeighted[KD, K](destination: KD, keys: Map[K, Double], aggregate: Aggregate = redis.api.SUM)(implicit evidence$4: ByteStringSerializer[KD], evidence$5: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  7. case class Zrange[K, R](key: K, start: Long, stop: Long)(implicit keySeria: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

  8. case class ZrangeWithscores[K, R](key: K, start: Long, stop: Long)(implicit keySeria: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteStringDouble[R] with Product with Serializable

  9. case class Zrangebyscore[K, R](key: K, min: Limit, max: Limit, limit: Option[(Long, Long)] = scala.None)(implicit evidence$6: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

  10. case class ZrangebyscoreWithscores[K, R](key: K, min: Limit, max: Limit, limit: Option[(Long, Long)] = scala.None)(implicit evidence$7: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteStringDouble[R] with Product with Serializable

  11. case class Zrank[K, V](key: K, member: V)(implicit keySeria: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandRedisReplyOptionLong with Product with Serializable

  12. case class Zrem[K, V](key: K, members: Seq[V])(implicit keySeria: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerLong with Product with Serializable

  13. case class Zremrangebyrank[K](key: K, start: Long, stop: Long)(implicit keySeria: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  14. case class Zremrangebyscore[K](key: K, min: Limit, max: Limit)(implicit keySeria: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  15. case class Zrevrange[K, R](key: K, start: Long, stop: Long)(implicit keySeria: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

  16. case class ZrevrangeWithscores[K, R](key: K, start: Long, stop: Long)(implicit keySeria: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteStringDouble[R] with Product with Serializable

  17. case class Zrevrangebyscore[K, R](key: K, min: Limit, max: Limit, limit: Option[(Long, Long)] = scala.None)(implicit evidence$8: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

  18. case class ZrevrangebyscoreWithscores[K, R](key: K, min: Limit, max: Limit, limit: Option[(Long, Long)] = scala.None)(implicit evidence$9: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteStringDouble[R] with Product with Serializable

  19. case class Zrevrank[K, V](key: K, member: V)(implicit keySeria: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandRedisReplyOptionLong with Product with Serializable

  20. case class Zscore[K, V](key: K, member: V)(implicit keySeria: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandBulkOptionDouble with Product with Serializable

  21. case class Zunionstore[KD, K, KK](destination: KD, key: K, keys: Seq[KK], aggregate: Aggregate = redis.api.SUM)(implicit evidence$10: ByteStringSerializer[KD], evidence$11: ByteStringSerializer[K], evidence$12: ByteStringSerializer[KK]) extends RedisCommandIntegerLong with Product with Serializable

  22. case class ZunionstoreWeighted[KD, K](destination: KD, keys: Map[K, Double], aggregate: Aggregate = redis.api.SUM)(implicit evidence$13: ByteStringSerializer[KD], evidence$14: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

Ungrouped