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
- 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