trait Strings extends Request
Ordering
- Alphabetic
- By Inheritance
Inherited
- Strings
- Request
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- implicit abstract val executionContext: ExecutionContext
- Definition Classes
- Request
- abstract def send[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]
- Definition Classes
- Request
Concrete 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
- def append[V](key: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def bitcount(key: String, start: Long, end: Long): Future[Long]
- def bitcount(key: String): Future[Long]
- def bitop(operation: BitOperator, destkey: String, keys: String*): Future[Long]
- def bitopAND(destkey: String, keys: String*): Future[Long]
- def bitopNOT(destkey: String, key: String): Future[Long]
- def bitopOR(destkey: String, keys: String*): Future[Long]
- def bitopXOR(destkey: String, keys: String*): Future[Long]
- def bitpos(key: String, bit: Long, start: Long = 0, end: Long = -1): Future[Long]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def decr(key: String): Future[Long]
- def decrby(key: String, decrement: Long): Future[Long]
- 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])
- def get[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getbit(key: String, offset: Long): Future[Boolean]
- def getrange[R](key: String, start: Long, end: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
- def getset[V, R](key: String, value: V)(implicit arg0: ByteStringSerializer[V], arg1: ByteStringDeserializer[R]): Future[Option[R]]
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def incr(key: String): Future[Long]
- def incrby(key: String, increment: Long): Future[Long]
- def incrbyfloat(key: String, increment: Double): Future[Option[Double]]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mget[R](keys: String*)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[Option[R]]]
- def mset[V](keysValues: Map[String, V])(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
- def msetnx[V](keysValues: Map[String, V])(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
- 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()
- def psetex[V](key: String, milliseconds: Long, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
- def set[V](key: String, value: V, exSeconds: Option[Long] = None, pxMilliseconds: Option[Long] = None, NX: Boolean = false, XX: Boolean = false)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
- def setbit(key: String, offset: Long, value: Boolean): Future[Boolean]
- def setex[V](key: String, seconds: Long, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
- def setnx[V](key: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
- def setrange[V](key: String, offset: Long, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
- def strlen(key: String): Future[Long]
- 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()