Package

redis.api

sortedsets

Permalink

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

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

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

    Permalink
  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

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

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

    Permalink
  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

    Permalink
  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

    Permalink
  9. case class Zrangebylex[K, R](key: K, min: String, max: String, limit: Option[(Long, Long)] = None)(implicit keySeria: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

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

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

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

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

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

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

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

    Permalink
  17. 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

    Permalink
  18. 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

    Permalink
  19. case class Zrevrangebylex[K, R](key: K, max: String, min: String, limit: Option[(Long, Long)] = None)(implicit keySeria: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

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

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

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

    Permalink
  23. case class Zscan[K, C, R](key: K, cursor: C, count: Option[Int], matchGlob: Option[String])(implicit redisKey: ByteStringSerializer[K], redisCursor: ByteStringSerializer[C], deserializerR: ByteStringDeserializer[R], scoreDeserializer: ByteStringDeserializer[Double]) extends RedisCommandMultiBulkCursor[Seq[(Double, R)]] with ByteStringDeserializerDefault with Product with Serializable

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

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

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

    Permalink

Ungrouped