object HashRequests
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HashRequests
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class HDel (key: String, fields: String*) extends Request[Long] with Key with Product with Serializable
- case class HExists (key: String, field: String) extends Request[Boolean] with Key with Product with Serializable
- case class HGet [R](key: String, field: String)(implicit evidence$1: Reader[R]) extends Request[Option[R]] with Key with Product with Serializable
- case class HGetAll [R](key: String)(implicit evidence$2: Reader[R]) extends Request[Map[String, R]] with Key with Product with Serializable
- case class HIncrBy (key: String, field: String, value: Long) extends Request[Long] with Key with Product with Serializable
- case class HIncrByFloat (key: String, field: String, value: Double) extends Request[Double] with Key with Product with Serializable
- case class HKeys [CC[X] <: Traversable[X]](key: String)(implicit cbf: CanBuildFrom[Nothing, String, CC[String]]) extends Request[CC[String]] with Key with Product with Serializable
- case class HLen (key: String) extends Request[Long] with Key with Product with Serializable
- case class HMGet [R, CC[X] <: Traversable[X]](key: String, fields: String*)(implicit evidence$3: Reader[R], cbf: CanBuildFrom[Nothing, Option[R], CC[Option[R]]]) extends Request[CC[Option[R]]] with Key with Product with Serializable
- case class HMGetAsMap [R](key: String, fields: String*)(implicit evidence$4: Reader[R]) extends Request[Map[String, R]] with Key with Product with Serializable
- case class HMSet [W](key: String, fieldValuePairs: (String, W)*)(implicit writer: Writer[W]) extends Request[Unit] with Key with Product with Serializable
- case class HScan [R, CC[X] <: Traversable[X]](key: String, cursor: Long, matchOpt: Option[String], countOpt: Option[Int])(implicit evidence$5: Reader[R], cbf: CanBuildFrom[Nothing, (String, R), CC[(String, R)]]) extends Request[(Long, CC[(String, R)])] with Key with Product with Serializable
- case class HSet [W](key: String, field: String, value: W)(implicit evidence$6: Writer[W]) extends Request[Boolean] with Key with Product with Serializable
- case class HSetNX [W](key: String, field: String, value: W)(implicit evidence$7: Writer[W]) extends Request[Boolean] with Key with Product with Serializable
- case class HVals [R, CC[X] <: Traversable[X]](key: String)(implicit evidence$8: Reader[R], cbf: CanBuildFrom[Nothing, R, CC[R]]) extends Request[CC[R]] 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] )
-
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 HDel extends Command with WriteCommand with Serializable
- object HExists extends Command with Serializable
- object HGet extends Command with Serializable
- object HGetAll extends Command with Serializable
- object HIncrBy extends Command with WriteCommand with Serializable
- object HIncrByFloat extends Command with WriteCommand with Serializable
- object HKeys extends Command with Serializable
- object HLen extends Command with Serializable
- object HMGet extends Command with Serializable
- object HMSet extends Command with WriteCommand with Serializable
- object HScan extends Command with Serializable
- object HSet extends Command with WriteCommand with Serializable
- object HSetNX extends Command with WriteCommand with Serializable
- object HVals extends Command with Serializable