scredis.protocol.requests

KeyRequests

object KeyRequests

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. KeyRequests
  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 Del(keys: String*) extends Request[Long] with Product with Serializable

  2. case class Dump(key: String) extends Request[Option[Array[Byte]]] with Product with Serializable

  3. case class Exists(key: String) extends Request[Boolean] with Product with Serializable

  4. case class Expire(key: String, ttlSeconds: Int) extends Request[Boolean] with Product with Serializable

  5. case class ExpireAt(key: String, timestampSeconds: Long) extends Request[Boolean] with Product with Serializable

  6. case class Keys[CC[X] <: Traversable[X]](pattern: String)(implicit cbf: CanBuildFrom[Nothing, String, CC[String]]) extends Request[CC[String]] with Product with Serializable

  7. case class Migrate(key: String, host: String, port: Int, database: Int, timeout: FiniteDuration, copy: Boolean, replace: Boolean) extends Request[Unit] with Product with Serializable

  8. case class Move(key: String, database: Int) extends Request[Boolean] with Product with Serializable

  9. case class ObjectEncoding(key: String) extends Request[Option[String]] with Product with Serializable

  10. case class ObjectIdleTime(key: String) extends Request[Option[Long]] with Product with Serializable

  11. case class ObjectRefCount(key: String) extends Request[Option[Long]] with Product with Serializable

  12. case class PExpire(key: String, ttlMillis: Long) extends Request[Boolean] with Product with Serializable

  13. case class PExpireAt(key: String, timestampMillis: Long) extends Request[Boolean] with Product with Serializable

  14. case class PTTL(key: String) extends Request[Either[Boolean, Long]] with Product with Serializable

  15. case class Persist(key: String) extends Request[Boolean] with Product with Serializable

  16. case class RandomKey() extends Request[Option[String]] with Product with Serializable

  17. case class Rename(key: String, newKey: String) extends Request[Unit] with Product with Serializable

  18. case class RenameNX(key: String, newKey: String) extends Request[Boolean] with Product with Serializable

  19. case class Restore[W](key: String, value: W, ttlOpt: Option[FiniteDuration])(implicit evidence$1: Writer[W]) extends Request[Unit] with Product with Serializable

  20. case class Scan[CC[X] <: Traversable[X]](cursor: Long, matchOpt: Option[String], countOpt: Option[Int])(implicit cbf: CanBuildFrom[Nothing, String, CC[String]]) extends Request[(Long, CC[String])] with Product with Serializable

  21. case class Sort[R, CC[X] <: Traversable[X]](key: String, byOpt: Option[String], limitOpt: Option[(Long, Long)], get: Traversable[String], desc: Boolean, alpha: Boolean)(implicit evidence$2: Reader[R], cbf: CanBuildFrom[Nothing, Option[R], CC[Option[R]]]) extends Request[CC[Option[R]]] with Product with Serializable

  22. case class SortAndStore(key: String, targetKey: String, byOpt: Option[String], limitOpt: Option[(Long, Long)], get: Traversable[String], desc: Boolean, alpha: Boolean) extends Request[Long] with Product with Serializable

  23. case class TTL(key: String) extends Request[Either[Boolean, Int]] with Product with Serializable

  24. case class Type(key: String) extends Request[Option[scredis.Type]] 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 Del extends Command with WriteCommand with Serializable

  5. object Dump extends Command with Serializable

  6. object Exists extends Command with Serializable

  7. object Expire extends Command with WriteCommand with Serializable

  8. object ExpireAt extends Command with WriteCommand with Serializable

  9. object Keys extends Command with Serializable

  10. object Migrate extends Command with WriteCommand with Serializable

  11. object Move extends Command with WriteCommand with Serializable

  12. object ObjectEncoding extends Command with Serializable

  13. object ObjectIdleTime extends Command with Serializable

  14. object ObjectRefCount extends Command with Serializable

  15. object PExpire extends Command with WriteCommand with Serializable

  16. object PExpireAt extends Command with WriteCommand with Serializable

  17. object PTTL extends Command with Serializable

  18. object Persist extends Command with WriteCommand with Serializable

  19. object RandomKey extends ZeroArgCommand with Serializable

  20. object Rename extends Command with WriteCommand with Serializable

  21. object RenameNX extends Command with WriteCommand with Serializable

  22. object Restore extends Command with WriteCommand with Serializable

  23. object Scan extends Command with Serializable

  24. object Sort extends Command with Serializable

  25. object TTL extends Command with Serializable

  26. object Type extends Command with Serializable

  27. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  28. def clone(): AnyRef

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  32. def generateSortArgs(key: String, byOpt: Option[String], limitOpt: Option[(Long, Long)], get: Traversable[String], desc: Boolean, alpha: Boolean, storeKeyOpt: Option[String]): List[Any]

    Attributes
    protected
  33. final def getClass(): Class[_]

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

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

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

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

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

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

    Definition Classes
    AnyRef
  40. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped