object HashRequests
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HashRequests
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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] <: Iterable[X]](key: String)(implicit factory: Factory[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] <: Iterable[X]](key: String, fields: String*)(implicit evidence$3: Reader[R], factory: Factory[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] <: Iterable[X]](key: String, cursor: Long, matchOpt: Option[String], countOpt: Option[Int])(implicit evidence$5: Reader[R], factory: Factory[(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 HStrlen(key: String, field: String) extends Request[Long] with Key with Product with Serializable
- case class HVals[R, CC[X] <: Iterable[X]](key: String)(implicit evidence$8: Reader[R], factory: Factory[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[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])
- 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 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 HStrlen extends Command with WriteCommand with Serializable
- object HVals extends Command with Serializable