Trait

com.redis.api

SortedSetOperations

Related Doc: package api

Permalink

trait SortedSetOperations extends AnyRef

Self Type
RedisOps
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SortedSetOperations
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  16. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. def zadd(key: String, scoreMember: ScoredValue, scoreMembers: ScoredValue*)(implicit timeout: Timeout): Future[Long]

    Permalink
  21. def zadd(key: String, score: Double, member: Stringified)(implicit timeout: Timeout): Future[Long]

    Permalink
  22. def zadd(key: String, scoreMembers: Seq[ScoredValue])(implicit timeout: Timeout): Future[Long]

    Permalink
  23. def zcard(key: String)(implicit timeout: Timeout): Future[Long]

    Permalink
  24. def zcount(key: String, min: Double = `-Inf`, minInclusive: Boolean = true, max: Double = `+Inf`, maxInclusive: Boolean = true)(implicit timeout: Timeout): Future[Long]

    Permalink
  25. def zincrby(key: String, incr: Double, member: Stringified)(implicit timeout: Timeout): Future[Option[Double]]

    Permalink
  26. def zinterstore(dstKey: String, keys: Iterable[String], aggregate: Aggregate = SUM)(implicit timeout: Timeout): Future[Long]

    Permalink
  27. def zinterstoreweighted(dstKey: String, kws: Iterable[Product2[String, Double]], aggregate: Aggregate = SUM)(implicit timeout: Timeout): Future[Long]

    Permalink
  28. def zlexcount(key: String, minKey: String = `-LexInf`, minInclusive: Boolean = true, maxKey: String = `+LexInf`, maxInclusive: Boolean = true)(implicit timeout: Timeout): Future[Long]

    Permalink
  29. def zrange[A](key: String, start: Int = 0, end: Int = 1)(implicit timeout: Timeout, reader: Reader[A]): Future[List[A]]

    Permalink
  30. def zrangeByScore[A](key: String, min: Double = `-Inf`, minInclusive: Boolean = true, max: Double = `+Inf`, maxInclusive: Boolean = true, limit: Option[(Int, Int)] = None)(implicit timeout: Timeout, reader: Reader[A]): Future[List[A]]

    Permalink
  31. def zrangeByScoreWithScores[A](key: String, min: Double = `-Inf`, minInclusive: Boolean = true, max: Double = `+Inf`, maxInclusive: Boolean = true, limit: Option[(Int, Int)] = None)(implicit timeout: Timeout, reader: Reader[A]): Future[List[(A, Double)]]

    Permalink
  32. def zrangeWithScores[A](key: String, start: Int = 0, end: Int = 1)(implicit timeout: Timeout, reader: Reader[A]): Future[List[(A, Double)]]

    Permalink
  33. def zrangebylex[A](key: String, minKey: String = `-LexInf`, minInclusive: Boolean = true, maxKey: String = `+LexInf`, maxInclusive: Boolean = true, limit: Option[(Int, Int)] = None)(implicit timeout: Timeout, reader: Reader[A]): Future[List[A]]

    Permalink
  34. def zrank(key: String, member: Stringified)(implicit timeout: Timeout): Future[Option[Long]]

    Permalink
  35. def zrem(key: String, member: Stringified, members: Stringified*)(implicit timeout: Timeout): Future[Long]

    Permalink
  36. def zrem(key: String, members: Seq[Stringified])(implicit timeout: Timeout): Future[Long]

    Permalink
  37. def zremrangebylex[A](key: String, minKey: String = `-LexInf`, minInclusive: Boolean = true, maxKey: String = `+LexInf`, maxInclusive: Boolean = true)(implicit timeout: Timeout): Future[Long]

    Permalink
  38. def zremrangebyrank(key: String, start: Int = 0, end: Int = 1)(implicit timeout: Timeout): Future[Long]

    Permalink
  39. def zremrangebyscore(key: String, start: Double = `-Inf`, end: Double = `+Inf`)(implicit timeout: Timeout): Future[Long]

    Permalink
  40. def zrevrange[A](key: String, start: Int = 0, end: Int = 1)(implicit timeout: Timeout, reader: Reader[A]): Future[List[A]]

    Permalink
  41. def zrevrangeByScore[A](key: String, max: Double = `+Inf`, maxInclusive: Boolean = true, min: Double = `-Inf`, minInclusive: Boolean = true, limit: Option[(Int, Int)] = None)(implicit timeout: Timeout, reader: Reader[A]): Future[List[A]]

    Permalink
  42. def zrevrangeByScoreWithScores[A](key: String, max: Double = `+Inf`, maxInclusive: Boolean = true, min: Double = `-Inf`, minInclusive: Boolean = true, limit: Option[(Int, Int)] = None)(implicit timeout: Timeout, reader: Reader[A]): Future[List[(A, Double)]]

    Permalink
  43. def zrevrangeWithScores[A](key: String, start: Int = 0, end: Int = 1)(implicit timeout: Timeout, reader: Reader[A]): Future[List[(A, Double)]]

    Permalink
  44. def zrevrank(key: String, member: Stringified)(implicit timeout: Timeout): Future[Option[Long]]

    Permalink
  45. def zscore(key: String, element: Stringified)(implicit timeout: Timeout): Future[Option[Double]]

    Permalink
  46. def zunionstore(dstKey: String, keys: Iterable[String], aggregate: Aggregate = SUM)(implicit timeout: Timeout): Future[Long]

    Permalink
  47. def zunionstoreweighted(dstKey: String, kws: Iterable[Product2[String, Double]], aggregate: Aggregate = SUM)(implicit timeout: Timeout): Future[Long]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped