object KeyRequests
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- KeyRequests
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
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] <: Traversable[X]](pattern: String)(implicit cbf: CanBuildFrom[Nothing, 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 [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
- 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 Key with Product with Serializable
- 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 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[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
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
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
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( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- 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