scredis.protocol.requests

SortedSetRequests

object SortedSetRequests

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SortedSetRequests
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
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 Product with Serializable

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

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

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

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

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

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

  8. case class ZRange[R, CC[X] <: Traversable[X]](key: String, start: Long, stop: Long)(implicit evidence$2: Reader[R], cbf: CanBuildFrom[Nothing, R, CC[R]]) extends Request[CC[R]] with Product with Serializable

  9. case class ZRangeByLex[R, CC[X] <: Traversable[X]](key: String, min: LexicalScoreLimit, max: LexicalScoreLimit, limitOpt: Option[(Long, Int)])(implicit evidence$4: Reader[R], cbf: CanBuildFrom[Nothing, R, CC[R]]) extends Request[CC[R]] with Product with Serializable

  10. case class ZRangeByScore[R, CC[X] <: Traversable[X]](key: String, min: ScoreLimit, max: ScoreLimit, limitOpt: Option[(Long, Int)])(implicit evidence$5: Reader[R], cbf: CanBuildFrom[Nothing, R, CC[R]]) extends Request[CC[R]] with Product with Serializable

  11. case class ZRangeByScoreWithScores[R, CC[X] <: Traversable[X]](key: String, min: ScoreLimit, max: ScoreLimit, limitOpt: Option[(Long, Int)])(implicit evidence$6: Reader[R], cbf: CanBuildFrom[Nothing, (R, Score), CC[(R, Score)]]) extends Request[CC[(R, Score)]] with Product with Serializable

  12. case class ZRangeWithScores[R, CC[X] <: Traversable[X]](key: String, start: Long, stop: Long)(implicit evidence$3: Reader[R], cbf: CanBuildFrom[Nothing, (R, Score), CC[(R, Score)]]) extends Request[CC[(R, Score)]] with Product with Serializable

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

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

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

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

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

  18. case class ZRevRange[R, CC[X] <: Traversable[X]](key: String, start: Long, stop: Long)(implicit evidence$8: Reader[R], cbf: CanBuildFrom[Nothing, R, CC[R]]) extends Request[CC[R]] with Product with Serializable

  19. case class ZRevRangeByScore[R, CC[X] <: Traversable[X]](key: String, max: ScoreLimit, min: ScoreLimit, limitOpt: Option[(Long, Int)])(implicit evidence$10: Reader[R], cbf: CanBuildFrom[Nothing, R, CC[R]]) extends Request[CC[R]] with Product with Serializable

  20. case class ZRevRangeByScoreWithScores[R, CC[X] <: Traversable[X]](key: String, max: ScoreLimit, min: ScoreLimit, limitOpt: Option[(Long, Int)])(implicit evidence$11: Reader[R], cbf: CanBuildFrom[Nothing, (R, Score), CC[(R, Score)]]) extends Request[CC[(R, Score)]] with Product with Serializable

  21. case class ZRevRangeWithScores[R, CC[X] <: Traversable[X]](key: String, start: Long, stop: Long)(implicit evidence$9: Reader[R], cbf: CanBuildFrom[Nothing, (R, Score), CC[(R, Score)]]) extends Request[CC[(R, Score)]] with Product with Serializable

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

  23. case class ZScan[R, CC[X] <: Traversable[X]](key: String, cursor: Long, matchOpt: Option[String], countOpt: Option[Int])(implicit evidence$13: Reader[R], cbf: CanBuildFrom[Nothing, (R, Score), CC[(R, Score)]]) extends Request[(Long, CC[(R, Score)])] with Product with Serializable

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

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

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

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. object ZAdd extends Command with WriteCommand with Serializable

  5. object ZCard extends Command with Serializable

  6. object ZCount extends Command with Serializable

  7. object ZIncrBy extends Command with WriteCommand with Serializable

  8. object ZInterStore extends Command with WriteCommand with Serializable

  9. object ZLexCount extends Command with Serializable

  10. object ZRange extends Command with Serializable

  11. object ZRangeByLex extends Command with Serializable

  12. object ZRangeByScore extends Command with Serializable

  13. object ZRank extends Command with Serializable

  14. object ZRem extends Command with WriteCommand with Serializable

  15. object ZRemRangeByLex extends Command with WriteCommand with Serializable

  16. object ZRemRangeByRank extends Command with WriteCommand with Serializable

  17. object ZRemRangeByScore extends Command with WriteCommand with Serializable

  18. object ZRevRange extends Command with Serializable

  19. object ZRevRangeByScore extends Command with Serializable

  20. object ZRevRank extends Command with Serializable

  21. object ZScan extends Command with Serializable

  22. object ZScore extends Command with Serializable

  23. object ZUnionStore extends Command with WriteCommand with Serializable

  24. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  25. def clone(): AnyRef

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  33. final def notify(): Unit

    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit

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

    Definition Classes
    AnyRef
  36. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped