Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
-
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
configSet(parameter: String, value: String): Future[Boolean]
-
-
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
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
-
-
-
-
final
def
getClass(): Class[_]
-
def
getbit(key: String, offset: Long): Future[Boolean]
-
-
-
def
hashCode(): Int
-
def
hdel(key: String, fields: String*): Future[Long]
-
def
hexists(key: String, field: String): Future[Boolean]
-
-
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
hscan[R](key: String, cursor: Int = 0, count: Option[Int] = None, matchGlob: Option[String] = None)(implicit arg0: ByteStringDeserializer[R]): Future[Cursor[Map[String, R]]]
-
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
incr(key: String): Future[Long]
-
def
incrby(key: String, increment: Long): Future[Long]
-
-
def
info(section: String): Future[String]
-
def
info(): Future[String]
-
final
def
isInstanceOf[T0]: Boolean
-
def
keys(pattern: String): Future[Seq[String]]
-
-
-
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
lpush[V](key: String, values: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
-
-
-
-
def
ltrim(key: String, start: Long, stop: Long): Future[Boolean]
-
-
def
migrate(host: String, port: Int, key: String, destinationDB: Int, timeout: FiniteDuration): Future[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
pfadd[V](key: String, values: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
pfcount(keys: String*): Future[Long]
-
def
pfmerge(destKey: String, sourceKeys: String*): 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
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
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
sadd[V](key: String, members: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
-
def
scan(cursor: Int = 0, count: Option[Int] = None, matchGlob: Option[String] = None): Future[Cursor[Seq[String]]]
-
def
scard(key: String): Future[Long]
-
def
scriptExists(sha1: String*): Future[Seq[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
setrange[V](key: String, offset: Long, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
-
-
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
slaveof(host: String, port: Int): 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
srandmember[R](key: String, count: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
-
def
srem[V](key: String, members: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
sscan[R](key: String, cursor: Int = 0, count: Option[Int] = None, matchGlob: Option[String] = None)(implicit arg0: ByteStringDeserializer[R]): Future[Cursor[Seq[R]]]
-
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
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
zcard(key: String): Future[Long]
-
-
-
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
zrangeWithscores[R](key: String, start: Long, stop: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[(R, Double)]]
-
def
zrangebylex[R](key: String, min: Option[String], max: Option[String], limit: Option[(Long, Long)] = None)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
-
-
-
def
zrem[V](key: String, members: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
-
def
zremrangebylex(key: String, min: String, max: String): 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
zrevrangebylex[R](key: String, max: Option[String], min: Option[String], limit: Option[(Long, Long)] = None)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
-
-
-
-
def
zscan[R](key: String, cursor: Int = 0, count: Option[Int] = None, matchGlob: Option[String] = None)(implicit arg0: ByteStringDeserializer[R]): Future[Cursor[Seq[(Double, R)]]]
-
-
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]