object KeyRequests
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- KeyRequests
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class Del(keysDel: String*) extends Request[Long] with Key with Product with Serializable
- case class Dump(key: String) extends Request[Option[Array[Byte]]] with Key with Product with Serializable
- case class Exists(key: String) extends Request[Boolean] with Key with Product with Serializable
- case class Expire(key: String, ttlSeconds: Int) extends Request[Boolean] with Key with Product with Serializable
- case class ExpireAt(key: String, timestampSeconds: Long) extends Request[Boolean] with Key with Product with Serializable
- case class Keys[CC[X] <: Iterable[X]](pattern: String)(implicit factory: Factory[String, CC[String]]) extends Request[CC[String]] with Product with Serializable
- case class Migrate(key: String, host: String, port: Int, database: Int, timeout: FiniteDuration, copy: Boolean, replace: Boolean) extends Request[Unit] with Key with Product with Serializable
- case class Move(key: String, database: Int) extends Request[Boolean] with Key with Product with Serializable
- case class ObjectEncoding(key: String) extends Request[Option[String]] with Key with Product with Serializable
- case class ObjectIdleTime(key: String) extends Request[Option[Long]] with Key with Product with Serializable
- case class ObjectRefCount(key: String) extends Request[Option[Long]] with Key with Product with Serializable
- case class PExpire(key: String, ttlMillis: Long) extends Request[Boolean] with Key with Product with Serializable
- case class PExpireAt(key: String, timestampMillis: Long) extends Request[Boolean] with Key with Product with Serializable
- case class PTTL(key: String) extends Request[Either[Boolean, Long]] with Key with Product with Serializable
- case class Persist(key: String) extends Request[Boolean] with Key with Product with Serializable
- case class RandomKey() extends Request[Option[String]] with Product with Serializable
- case class Rename(key: String, newKey: String) extends Request[Unit] with Key with Product with Serializable
- case class RenameNX(key: String, newKey: String) extends Request[Boolean] with Key with Product with Serializable
- 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
- case class Scan(cursor: Long, matchOpt: Option[String], countOpt: Option[Int]) extends Request[(Long, Set[String])] with Product with Serializable
- 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
- 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
- case class TTL(key: String) extends Request[Either[Boolean, Int]] with Key with Product with Serializable
- case class Type(key: String) extends Request[Option[scredis.Type]] with Key with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- 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
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object Del extends Command with WriteCommand with Serializable
- object Dump extends Command with Serializable
- object Exists extends Command with Serializable
- object Expire extends Command with WriteCommand with Serializable
- object ExpireAt extends Command with WriteCommand with Serializable
- object Keys extends Command with Serializable
- object Migrate extends Command with WriteCommand with Serializable
- object Move extends Command with WriteCommand with Serializable
- object ObjectEncoding extends Command with Serializable
- object ObjectIdleTime extends Command with Serializable
- object ObjectRefCount extends Command with Serializable
- object PExpire extends Command with WriteCommand with Serializable
- object PExpireAt extends Command with WriteCommand with Serializable
- object PTTL extends Command with Serializable
- object Persist extends Command with WriteCommand with Serializable
- object RandomKey extends ZeroArgCommand with Serializable
- object Rename extends Command with WriteCommand with Serializable
- object RenameNX extends Command with WriteCommand with Serializable
- object Restore extends Command with WriteCommand with Serializable
- object Scan extends Command with Serializable
- object Sort extends Command with Serializable
- object TTL extends Command with Serializable
- object Type extends Command with Serializable