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
bgrewriteaof(): Future[String]
-
def
bgsave(): Future[String]
-
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
clientGetname(): Future[Option[String]]
-
def
clientKill(ip: String, port: Int): Future[Boolean]
-
def
clientList(): Future[Seq[Map[String, String]]]
-
def
clientSetname(connectionName: String): Future[Boolean]
-
def
clone(): AnyRef
-
def
configGet(parameter: String): Future[Map[String, String]]
-
def
configResetstat(): Future[Boolean]
-
def
configSet(parameter: String, value: String): Future[Boolean]
-
def
dbsize(): Future[Long]
-
def
debugObject(key: String): Future[String]
-
def
debugSegfault(): Future[String]
-
def
decr(key: String): Future[Long]
-
def
decrby(key: String, decrement: Long): Future[Long]
-
def
del(keys: String*): Future[Long]
-
def
dump[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
-
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
eval[R](script: String, keys: Seq[String] = Seq.empty[String], args: Seq[String] = Seq.empty[String])(implicit arg0: RedisReplyDeserializer[R]): Future[R]
-
def
evalsha[R](sha1: String, keys: Seq[String] = Seq.empty[String], args: Seq[String] = Seq.empty[String])(implicit arg0: RedisReplyDeserializer[R]): Future[R]
-
def
evalshaOrEval[R](redisScript: RedisScript, keys: Seq[String] = Seq.empty[String], args: Seq[String] = Seq.empty[String])(implicit arg0: RedisReplyDeserializer[R]): Future[R]
-
def
exists(key: String): Future[Boolean]
-
def
expire(key: String, seconds: Long): Future[Boolean]
-
def
expireat(key: String, seconds: Long): Future[Boolean]
-
def
finalize(): Unit
-
def
flushall(): Future[Boolean]
-
def
flushdb(): Future[Boolean]
-
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
hdel(key: String, fields: String*): Future[Long]
-
def
hexists(key: String, field: String): Future[Boolean]
-
def
hget[R](key: String, field: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
-
def
hgetall[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Map[String, R]]
-
def
hincrby(key: String, fields: String, increment: Long): Future[Long]
-
def
hincrbyfloat(key: String, fields: String, increment: Double): Future[Double]
-
def
hkeys(key: String): Future[Seq[String]]
-
def
hlen(key: String): Future[Long]
-
def
hmget[R](key: String, fields: String*)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[Option[R]]]
-
def
hmset[V](key: String, keysValues: Map[String, V])(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
-
def
hset[V](key: String, field: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
-
def
hsetnx[V](key: String, field: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
-
def
hvals[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
incr(key: String): Future[Long]
-
def
incrby(key: String, increment: Long): Future[Long]
-
def
incrbyfloat(key: String, increment: Double): Future[Option[Double]]
-
def
info(section: String): Future[String]
-
def
info(): Future[String]
-
final
def
isInstanceOf[T0]: Boolean
-
def
keys(pattern: String): Future[Seq[String]]
-
def
lastsave(): Future[Long]
-
def
lindex[R](key: String, index: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
-
def
linsert[V](key: String, beforeAfter: ListPivot, pivot: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
linsertAfter[V](key: String, pivot: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
linsertBefore[V](key: String, pivot: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
llen(key: String): Future[Long]
-
def
lpop[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
-
def
lpush[V](key: String, values: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
lpushx[V](key: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
lrange[R](key: String, start: Long, stop: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
lrem[V](key: String, count: Long, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
lset[V](key: String, index: Long, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
-
def
ltrim(key: String, start: Long, stop: Long): Future[Boolean]
-
def
mget[R](keys: String*)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[Option[R]]]
-
def
migrate(host: String, port: Int, key: String, destinationDB: Int, timeout: FiniteDuration): Future[Boolean]
-
def
move(key: String, db: Int): Future[Boolean]
-
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
objectEncoding(key: String): Future[Option[String]]
-
def
objectIdletime(key: String): Future[Option[Long]]
-
def
objectRefcount(key: String): Future[Option[Long]]
-
def
persist(key: String): Future[Boolean]
-
def
pexpire(key: String, milliseconds: Long): Future[Boolean]
-
def
pexpireat(key: String, millisecondsTimestamp: Long): Future[Boolean]
-
def
ping(): Future[String]
-
def
psetex[V](key: String, milliseconds: Long, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
-
def
pttl(key: String): Future[Long]
-
def
publish[V](channel: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
quit(): Future[Boolean]
-
def
randomkey[R]()(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
-
def
rename(key: String, newkey: String): Future[Boolean]
-
def
renamenx(key: String, newkey: String): Future[Boolean]
-
def
restore[V](key: String, ttl: Long = 0, serializedValue: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
-
def
rpop[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
-
def
rpoplpush[R](source: String, destination: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
-
def
rpush[V](key: String, values: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
rpushx[V](key: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
sadd[V](key: String, members: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
save(): Future[Boolean]
-
def
scard(key: String): Future[Long]
-
def
scriptExists(sha1: String*): Future[Seq[Boolean]]
-
def
scriptFlush(): Future[Boolean]
-
def
scriptKill(): Future[Boolean]
-
def
scriptLoad(script: String): Future[String]
-
def
sdiff[R](key: String, keys: String*)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
sdiffstore(destination: String, key: String, keys: String*): Future[Long]
-
def
select(index: Int): 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
shutdown(modifier: ShutdownModifier): Future[Boolean]
-
def
shutdown(): Future[Boolean]
-
def
sinter[R](key: String, keys: String*)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
sinterstore(destination: String, key: String, keys: String*): Future[Long]
-
def
sismember[V](key: String, member: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
-
def
slaveof(host: String, port: Int): Future[Boolean]
-
def
slaveofNoOne(): Future[Boolean]
-
def
smembers[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
smove[V](source: String, destination: String, member: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
-
def
sort[R](key: String, byPattern: Option[String] = None, limit: Option[LimitOffsetCount] = None, getPatterns: Seq[String] = Seq(), order: Option[Order] = None, alpha: Boolean = false)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
sortStore(key: String, byPattern: Option[String] = None, limit: Option[LimitOffsetCount] = None, getPatterns: Seq[String] = Seq(), order: Option[Order] = None, alpha: Boolean = false, store: String): Future[Long]
-
def
spop[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
-
def
srandmember[R](key: String, count: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
srandmember[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
-
def
srem[V](key: String, members: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
strlen(key: String): Future[Long]
-
def
sunion[R](key: String, keys: String*)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
sunionstore(destination: String, key: String, keys: String*): Future[Long]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
time(): Future[(Long, Long)]
-
def
toString(): String
-
def
ttl(key: String): Future[Long]
-
def
type(key: String): Future[String]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
zadd[V](key: String, scoreMembers: (Double, V)*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
zcard(key: String): Future[Long]
-
-
def
zincrby[V](key: String, increment: Double, member: V)(implicit arg0: ByteStringSerializer[V]): Future[Double]
-
def
zinterstore(destination: String, key: String, keys: Seq[String], aggregate: Aggregate = SUM): Future[Long]
-
def
zinterstoreWeighted(destination: String, keys: Map[String, Double], aggregate: Aggregate = SUM): Future[Long]
-
def
zrange[R](key: String, start: Long, stop: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
zrangeWithscores[R](key: String, start: Long, stop: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[(R, Double)]]
-
def
zrangebyscore[R](key: String, min: Limit, max: Limit, limit: Option[(Long, Long)] = None)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
zrangebyscoreWithscores[R](key: String, min: Limit, max: Limit, limit: Option[(Long, Long)] = None)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[(R, Double)]]
-
def
zrank[V](key: String, member: V)(implicit arg0: ByteStringSerializer[V]): Future[Option[Long]]
-
def
zrem[V](key: String, members: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
zremrangebyrank(key: String, start: Long, stop: Long): Future[Long]
-
def
zremrangebyscore(key: String, min: Limit, max: Limit): Future[Long]
-
def
zrevrange[R](key: String, start: Long, stop: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
zrevrangeWithscores[R](key: String, start: Long, stop: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[(R, Double)]]
-
def
zrevrangebyscore[R](key: String, min: Limit, max: Limit, limit: Option[(Long, Long)] = None)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
def
zrevrangebyscoreWithscores[R](key: String, min: Limit, max: Limit, limit: Option[(Long, Long)] = None)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[(R, Double)]]
-
def
zrevrank[V](key: String, member: V)(implicit arg0: ByteStringSerializer[V]): Future[Option[Long]]
-
def
zscore[V](key: String, member: V)(implicit arg0: ByteStringSerializer[V]): Future[Option[Double]]
-
def
zunionstore(destination: String, key: String, keys: Seq[String], aggregate: Aggregate = SUM): Future[Long]
-
def
zunionstoreWeighted(destination: String, keys: Map[String, Double], aggregate: Aggregate = SUM): Future[Long]
Inherited from AnyRef
Inherited from Any