Object

scredis.protocol.requests

SortedSetRequests

Related Doc: package requests

Permalink

object SortedSetRequests

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedSetRequests
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class ZAdd[W](key: String, members: Map[W, Score])(implicit writer: Writer[W]) extends Request[Long] with Key with Product with Serializable

    Permalink
  2. case class ZCard(key: String) extends Request[Long] with Key with Product with Serializable

    Permalink
  3. case class ZCount(key: String, min: ScoreLimit, max: ScoreLimit) extends Request[Long] with Key with Product with Serializable

    Permalink
  4. case class ZIncrBy[W](key: String, increment: Double, member: W)(implicit evidence$1: Writer[W]) extends Request[Double] with Key with Product with Serializable

    Permalink
  5. case class ZInterStore(destination: String, keys: Seq[String], aggregate: Aggregate) extends Request[Long] with Key with Product with Serializable

    Permalink
  6. case class ZInterStoreWeighted(destination: String, keyWeightPairs: Map[String, Double], aggregate: Aggregate) extends Request[Long] with Key with Product with Serializable

    Permalink
  7. case class ZLexCount(key: String, min: LexicalScoreLimit, max: LexicalScoreLimit) extends Request[Long] with Key with Product with Serializable

    Permalink
  8. case class ZRange[R, CC[X] <: Iterable[X]](key: String, start: Long, stop: Long)(implicit evidence$2: Reader[R], factory: scala.collection.compat.Factory[R, CC[R]]) extends Request[CC[R]] with Key with Product with Serializable

    Permalink
  9. case class ZRangeByLex[R, CC[X] <: Iterable[X]](key: String, min: LexicalScoreLimit, max: LexicalScoreLimit, limitOpt: Option[(Long, Int)])(implicit evidence$4: Reader[R], factory: scala.collection.compat.Factory[R, CC[R]]) extends Request[CC[R]] with Key with Product with Serializable

    Permalink
  10. case class ZRangeByScore[R, CC[X] <: Iterable[X]](key: String, min: ScoreLimit, max: ScoreLimit, limitOpt: Option[(Long, Int)])(implicit evidence$5: Reader[R], factory: scala.collection.compat.Factory[R, CC[R]]) extends Request[CC[R]] with Key with Product with Serializable

    Permalink
  11. case class ZRangeByScoreWithScores[R, CC[X] <: Iterable[X]](key: String, min: ScoreLimit, max: ScoreLimit, limitOpt: Option[(Long, Int)])(implicit evidence$6: Reader[R], factory: scala.collection.compat.Factory[(R, Score), CC[(R, Score)]]) extends Request[CC[(R, Score)]] with Key with Product with Serializable

    Permalink
  12. case class ZRangeWithScores[R, CC[X] <: Iterable[X]](key: String, start: Long, stop: Long)(implicit evidence$3: Reader[R], factory: scala.collection.compat.Factory[(R, Score), CC[(R, Score)]]) extends Request[CC[(R, Score)]] with Key with Product with Serializable

    Permalink
  13. case class ZRank[W](key: String, member: W)(implicit evidence$7: Writer[W]) extends Request[Option[Long]] with Key with Product with Serializable

    Permalink
  14. case class ZRem[W](key: String, members: W*)(implicit writer: Writer[W]) extends Request[Long] with Key with Product with Serializable

    Permalink
  15. case class ZRemRangeByLex(key: String, min: LexicalScoreLimit, max: LexicalScoreLimit) extends Request[Long] with Key with Product with Serializable

    Permalink
  16. case class ZRemRangeByRank(key: String, start: Long, stop: Long) extends Request[Long] with Key with Product with Serializable

    Permalink
  17. case class ZRemRangeByScore(key: String, min: ScoreLimit, max: ScoreLimit) extends Request[Long] with Key with Product with Serializable

    Permalink
  18. case class ZRevRange[R, CC[X] <: Iterable[X]](key: String, start: Long, stop: Long)(implicit evidence$8: Reader[R], factory: scala.collection.compat.Factory[R, CC[R]]) extends Request[CC[R]] with Key with Product with Serializable

    Permalink
  19. case class ZRevRangeByScore[R, CC[X] <: Iterable[X]](key: String, max: ScoreLimit, min: ScoreLimit, limitOpt: Option[(Long, Int)])(implicit evidence$10: Reader[R], factory: scala.collection.compat.Factory[R, CC[R]]) extends Request[CC[R]] with Key with Product with Serializable

    Permalink
  20. case class ZRevRangeByScoreWithScores[R, CC[X] <: Iterable[X]](key: String, max: ScoreLimit, min: ScoreLimit, limitOpt: Option[(Long, Int)])(implicit evidence$11: Reader[R], factory: scala.collection.compat.Factory[(R, Score), CC[(R, Score)]]) extends Request[CC[(R, Score)]] with Key with Product with Serializable

    Permalink
  21. case class ZRevRangeWithScores[R, CC[X] <: Iterable[X]](key: String, start: Long, stop: Long)(implicit evidence$9: Reader[R], factory: scala.collection.compat.Factory[(R, Score), CC[(R, Score)]]) extends Request[CC[(R, Score)]] with Key with Product with Serializable

    Permalink
  22. case class ZRevRank[W](key: String, member: W)(implicit evidence$12: Writer[W]) extends Request[Option[Long]] with Key with Product with Serializable

    Permalink
  23. case class ZScan[R, CC[X] <: Iterable[X]](key: String, cursor: Long, matchOpt: Option[String], countOpt: Option[Int])(implicit evidence$13: Reader[R], factory: scala.collection.compat.Factory[(R, Score), CC[(R, Score)]]) extends Request[(Long, CC[(R, Score)])] with Key with Product with Serializable

    Permalink
  24. case class ZScore[W](key: String, member: W)(implicit evidence$14: Writer[W]) extends Request[Option[Score]] with Key with Product with Serializable

    Permalink
  25. case class ZUnionStore(destination: String, keys: Seq[String], aggregate: Aggregate) extends Request[Long] with Key with Product with Serializable

    Permalink
  26. case class ZUnionStoreWeighted(destination: String, keyWeightPairs: Map[String, Double], aggregate: Aggregate) extends Request[Long] with Key with Product with Serializable

    Permalink

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. object ZAdd extends Command with WriteCommand with Serializable

    Permalink
  5. object ZCard extends Command with Serializable

    Permalink
  6. object ZCount extends Command with Serializable

    Permalink
  7. object ZIncrBy extends Command with WriteCommand with Serializable

    Permalink
  8. object ZInterStore extends Command with WriteCommand with Serializable

    Permalink
  9. object ZLexCount extends Command with Serializable

    Permalink
  10. object ZRange extends Command with Serializable

    Permalink
  11. object ZRangeByLex extends Command with Serializable

    Permalink
  12. object ZRangeByScore extends Command with Serializable

    Permalink
  13. object ZRank extends Command with Serializable

    Permalink
  14. object ZRem extends Command with WriteCommand with Serializable

    Permalink
  15. object ZRemRangeByLex extends Command with WriteCommand with Serializable

    Permalink
  16. object ZRemRangeByRank extends Command with WriteCommand with Serializable

    Permalink
  17. object ZRemRangeByScore extends Command with WriteCommand with Serializable

    Permalink
  18. object ZRevRange extends Command with Serializable

    Permalink
  19. object ZRevRangeByScore extends Command with Serializable

    Permalink
  20. object ZRevRank extends Command with Serializable

    Permalink
  21. object ZScan extends Command with Serializable

    Permalink
  22. object ZScore extends Command with Serializable

    Permalink
  23. object ZUnionStore extends Command with WriteCommand with Serializable

    Permalink
  24. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  28. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  29. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  30. final def isInstanceOf[T0]: Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  34. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  36. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped