object KeyRequests

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

Type Members

  1. case class Del(keysDel: String*) extends Request[Long] with Key with Product with Serializable
  2. case class Dump(key: String) extends Request[Option[Array[Byte]]] with Key with Product with Serializable
  3. case class Exists(key: String) extends Request[Boolean] with Key with Product with Serializable
  4. case class Expire(key: String, ttlSeconds: Int) extends Request[Boolean] with Key with Product with Serializable
  5. case class ExpireAt(key: String, timestampSeconds: Long) extends Request[Boolean] with Key with Product with Serializable
  6. case class Keys[CC[X] <: Iterable[X]](pattern: String)(implicit factory: Factory[String, CC[String]]) extends Request[CC[String]] with Product with Serializable
  7. case class Migrate(key: String, host: String, port: Int, database: Int, authOpt: Option[AuthConfig], timeout: FiniteDuration, copy: Boolean, replace: Boolean) extends Request[Unit] with Key with Product with Serializable
  8. case class Move(key: String, database: Int) extends Request[Boolean] with Key with Product with Serializable
  9. case class ObjectEncoding(key: String) extends Request[Option[String]] with Key with Product with Serializable
  10. case class ObjectIdleTime(key: String) extends Request[Option[Long]] with Key with Product with Serializable
  11. case class ObjectRefCount(key: String) extends Request[Option[Long]] with Key with Product with Serializable
  12. case class PExpire(key: String, ttlMillis: Long) extends Request[Boolean] with Key with Product with Serializable
  13. case class PExpireAt(key: String, timestampMillis: Long) extends Request[Boolean] with Key with Product with Serializable
  14. case class PTTL(key: String) extends Request[Either[Boolean, Long]] with Key with Product with Serializable
  15. case class Persist(key: String) extends Request[Boolean] with Key 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 Key with Product with Serializable
  18. case class RenameNX(key: String, newKey: String) extends Request[Boolean] with Key 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 Key with Product with Serializable
  20. case class Scan(cursor: Long, matchOpt: Option[String], countOpt: Option[Int]) extends Request[(Long, Set[String])] with Product with Serializable
  21. case class Sort[R](key: String, byOpt: Option[String], limitOpt: Option[(Long, Long)], get: Iterable[String], desc: Boolean, alpha: Boolean)(implicit evidence$2: Reader[R]) extends Request[List[Option[R]]] with Key with Product with Serializable
  22. case class SortAndStore(key: String, targetKey: String, byOpt: Option[String], limitOpt: Option[(Long, Long)], get: Iterable[String], desc: Boolean, alpha: Boolean) extends Request[Long] with Key with Product with Serializable
  23. case class TTL(key: String) extends Request[Either[Boolean, Int]] with Key with Product with Serializable
  24. case class Type(key: String) extends Request[Option[scredis.Type]] with Key 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. def generateSortArgs(key: String, byOpt: Option[String], limitOpt: Option[(Long, Long)], get: Iterable[String], desc: Boolean, alpha: Boolean, storeKeyOpt: Option[String]): List[Any]
    Attributes
    protected
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. object Del extends Command with WriteCommand with Serializable
  22. object Dump extends Command with Serializable
  23. object Exists extends Command with Serializable
  24. object Expire extends Command with WriteCommand with Serializable
  25. object ExpireAt extends Command with WriteCommand with Serializable
  26. object Keys extends Command with Serializable
  27. object Migrate extends Command with WriteCommand with Serializable
  28. object Move extends Command with WriteCommand with Serializable
  29. object ObjectEncoding extends Command with Serializable
  30. object ObjectIdleTime extends Command with Serializable
  31. object ObjectRefCount extends Command with Serializable
  32. object PExpire extends Command with WriteCommand with Serializable
  33. object PExpireAt extends Command with WriteCommand with Serializable
  34. object PTTL extends Command with Serializable
  35. object Persist extends Command with WriteCommand with Serializable
  36. object RandomKey extends ZeroArgCommand with Serializable
  37. object Rename extends Command with WriteCommand with Serializable
  38. object RenameNX extends Command with WriteCommand with Serializable
  39. object Restore extends Command with WriteCommand with Serializable
  40. object Scan extends Command with Serializable
  41. object Sort extends Command with Serializable
  42. object TTL extends Command with Serializable
  43. object Type extends Command with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped