trait
Strings extends Request
Abstract Value Members
-
implicit abstract
val
executionContext: ExecutionContext
-
abstract
def
send[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]
Concrete Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
def
append[V](key: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
final
def
asInstanceOf[T0]: T0
-
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
clone(): AnyRef
-
def
decr(key: String): Future[Long]
-
def
decrby(key: String, decrement: Long): Future[Long]
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
def
get[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
-
final
def
getClass(): Class[_]
-
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
-
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
-
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
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
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
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any