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, 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. object Del extends Command with WriteCommand with Serializable
  2. object Dump extends Command with Serializable
  3. object Exists extends Command with Serializable
  4. object Expire extends Command with WriteCommand with Serializable
  5. object ExpireAt extends Command with WriteCommand with Serializable
  6. object Keys extends Command with Serializable
  7. object Migrate extends Command with WriteCommand with Serializable
  8. object Move extends Command with WriteCommand with Serializable
  9. object ObjectEncoding extends Command with Serializable
  10. object ObjectIdleTime extends Command with Serializable
  11. object ObjectRefCount extends Command with Serializable
  12. object PExpire extends Command with WriteCommand with Serializable
  13. object PExpireAt extends Command with WriteCommand with Serializable
  14. object PTTL extends Command with Serializable
  15. object Persist extends Command with WriteCommand with Serializable
  16. object RandomKey extends ZeroArgCommand with Serializable
  17. object Rename extends Command with WriteCommand with Serializable
  18. object RenameNX extends Command with WriteCommand with Serializable
  19. object Restore extends Command with WriteCommand with Serializable
  20. object Scan extends Command with Serializable
  21. object Sort extends Command with Serializable
  22. object TTL extends Command with Serializable
  23. object Type extends Command with Serializable