RedisClientPool

redis.RedisClientPool
case class RedisClientPool(redisServers: Seq[RedisServer], name: String)(implicit _system: ActorSystem, redisDispatcher: RedisDispatcher) extends RedisClientPoolLike, RoundRobinPoolRequest, RedisCommands

Attributes

Source
RedisPool.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Geo
trait Clusters
trait HyperLogLog
trait Server
trait Connection
trait Scripting
trait Publish
trait SortedSets
trait Sets
trait Lists
trait Hashes
trait Strings
trait Keys
trait Request
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def `type`(key: String): Future[String]

Attributes

Inherited from:
Keys
Source
Keys.scala
def append[V : ByteStringSerializer](key: String, value: V): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def auth[V : ByteStringSerializer](username: V, password: V): Future[Status]

Attributes

Inherited from:
Connection
Source
Connection.scala
def auth[V : ByteStringSerializer](password: V): Future[Status]

Attributes

Inherited from:
Connection
Source
Connection.scala

Attributes

Inherited from:
Server
Source
Server.scala
def bgsave(): Future[String]

Attributes

Inherited from:
Server
Source
Server.scala
def bitcount(key: String, start: Long, end: Long): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def bitcount(key: String): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def bitop(operation: BitOperator, destkey: String, keys: String*): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def bitopAND(destkey: String, keys: String*): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def bitopNOT(destkey: String, key: String): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def bitopOR(destkey: String, keys: String*): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def bitopXOR(destkey: String, keys: String*): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def bitpos(key: String, bit: Long, start: Long, end: Long): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def broadcast[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Seq[Future[T]]

Attributes

Returns

behave nicely with Future helpers like firstCompletedOf or sequence

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala

Attributes

Inherited from:
Server
Source
Server.scala
def clientKill(ip: String, port: Int): Future[Boolean]

Attributes

Inherited from:
Server
Source
Server.scala

Attributes

Inherited from:
Server
Source
Server.scala
def clientSetname(connectionName: String): Future[Boolean]

Attributes

Inherited from:
Server
Source
Server.scala

Attributes

Inherited from:
Clusters
Source
Clusters.scala

Attributes

Inherited from:
Clusters
Source
Clusters.scala

Attributes

Inherited from:
Clusters
Source
Clusters.scala
def configGet(parameter: String): Future[Map[String, String]]

Attributes

Inherited from:
Server
Source
Server.scala

Attributes

Inherited from:
Server
Source
Server.scala
def configSet(parameter: String, value: String): Future[Boolean]

Attributes

Inherited from:
Server
Source
Server.scala
def dbsize(): Future[Long]

Attributes

Inherited from:
Server
Source
Server.scala

Attributes

Inherited from:
Server
Source
Server.scala

Attributes

Inherited from:
Server
Source
Server.scala
def decr(key: String): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def decrby(key: String, decrement: Long): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def del(keys: String*): Future[Long]

Attributes

Inherited from:
Keys
Source
Keys.scala

Attributes

Inherited from:
Keys
Source
Keys.scala

Attributes

Inherited from:
Connection
Source
Connection.scala
def eval[R : RedisReplyDeserializer](script: String, keys: Seq[String], args: Seq[String]): Future[R]

Attributes

Inherited from:
Scripting
Source
Scripting.scala
def evalsha[R : RedisReplyDeserializer](sha1: String, keys: Seq[String], args: Seq[String]): Future[R]

Attributes

Inherited from:
Scripting
Source
Scripting.scala
def evalshaOrEval[R : RedisReplyDeserializer](redisScript: RedisScript, keys: Seq[String], args: Seq[String]): Future[R]

Try EVALSHA, if NOSCRIPT returned, fallback to EVAL

Try EVALSHA, if NOSCRIPT returned, fallback to EVAL

Attributes

Inherited from:
Scripting
Source
Scripting.scala
def exists(key: String): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala
def existsMany(keys: String*): Future[Long]

Attributes

Inherited from:
Keys
Source
Keys.scala
def expire(key: String, seconds: Long): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala
def expireat(key: String, seconds: Long): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala
def flushall(async: Boolean): Future[Boolean]

Attributes

Inherited from:
Server
Source
Server.scala
def flushdb(async: Boolean): Future[Boolean]

Attributes

Inherited from:
Server
Source
Server.scala
def geoAdd[K](key: String, lat: Double, lng: Double, loc: String): Future[Long]

Attributes

Inherited from:
Geo
Source
Geo.scala
def geoDist[K](key: String, member1: String, member2: String, unit: Measurement): Future[Double]

Attributes

Inherited from:
Geo
Source
Geo.scala
def geoHash[K](key: String, members: String*): Future[Seq[String]]

Attributes

Inherited from:
Geo
Source
Geo.scala
def geoPos[K](key: String, members: String*): Future[Seq[String]]

Attributes

Inherited from:
Geo
Source
Geo.scala
def geoRadius[K](key: String, lat: Double, lng: Double, radius: Double, dim: Measurement): Future[Seq[String]]

Attributes

Inherited from:
Geo
Source
Geo.scala
def geoRadiusByMember[K](key: String, member: String, dist: Int, dim: Measurement): Future[Seq[String]]

Attributes

Inherited from:
Geo
Source
Geo.scala
def geoRadiusByMemberWithOpt[K](key: String, member: String, dist: Int, dim: Measurement, opt: WithOption, count: Int): Future[Seq[String]]

Attributes

Inherited from:
Geo
Source
Geo.scala

Attributes

Inherited from:
Strings
Source
Strings.scala
def getConnectOperations(server: RedisServer): () => Seq[Operation[_, _]]

Attributes

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala
def getConnectionsActive: Seq[ActorRef]

Attributes

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala
def getNextConnection: Option[ActorRef]

Attributes

Inherited from:
RoundRobinPoolRequest
Source
Request.scala
def getbit(key: String, offset: Long): Future[Boolean]

Attributes

Inherited from:
Strings
Source
Strings.scala

Attributes

Inherited from:
Strings
Source
Strings.scala
def getrange[R : ByteStringDeserializer](key: String, start: Long, end: Long): Future[Option[R]]

Attributes

Inherited from:
Strings
Source
Strings.scala

Attributes

Inherited from:
Strings
Source
Strings.scala
def hdel(key: String, fields: String*): Future[Long]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hexists(key: String, field: String): Future[Boolean]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hget[R : ByteStringDeserializer](key: String, field: String): Future[Option[R]]

Attributes

Inherited from:
Hashes
Source
Hashes.scala

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hincrby(key: String, fields: String, increment: Long): Future[Long]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hincrbyfloat(key: String, fields: String, increment: Double): Future[Double]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hkeys(key: String): Future[Seq[String]]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hlen(key: String): Future[Long]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hmget[R : ByteStringDeserializer](key: String, fields: String*): Future[Seq[Option[R]]]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hmset[V : ByteStringSerializer](key: String, keysValues: Map[String, V]): Future[Boolean]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hscan[R : ByteStringDeserializer](key: String, cursor: Int, count: Option[Int], matchGlob: Option[String]): Future[Cursor[Map[String, R]]]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hset[V : ByteStringSerializer](key: String, keysValues: Map[String, V]): Future[Long]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hset[V : ByteStringSerializer](key: String, field: String, value: V): Future[Boolean]

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def hsetnx[V : ByteStringSerializer](key: String, field: String, value: V): Future[Boolean]

Attributes

Inherited from:
Hashes
Source
Hashes.scala

Attributes

Inherited from:
Hashes
Source
Hashes.scala
def incr(key: String): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def incrby(key: String, increment: Long): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def incrbyfloat(key: String, increment: Double): Future[Option[Double]]

Attributes

Inherited from:
Strings
Source
Strings.scala
def info(section: String): Future[String]

Attributes

Inherited from:
Server
Source
Server.scala
def info(): Future[String]

Attributes

Inherited from:
Server
Source
Server.scala
def keys(pattern: String): Future[Seq[String]]

Attributes

Inherited from:
Keys
Source
Keys.scala
def lastsave(): Future[Long]

Attributes

Inherited from:
Server
Source
Server.scala
def lindex[R : ByteStringDeserializer](key: String, index: Long): Future[Option[R]]

Attributes

Inherited from:
Lists
Source
Lists.scala
def linsert[V : ByteStringSerializer](key: String, beforeAfter: ListPivot, pivot: String, value: V): Future[Long]

Attributes

Inherited from:
Lists
Source
Lists.scala
def linsertAfter[V : ByteStringSerializer](key: String, pivot: String, value: V): Future[Long]

Attributes

Inherited from:
Lists
Source
Lists.scala
def linsertBefore[V : ByteStringSerializer](key: String, pivot: String, value: V): Future[Long]

Attributes

Inherited from:
Lists
Source
Lists.scala
def llen(key: String): Future[Long]

Attributes

Inherited from:
Lists
Source
Lists.scala

Attributes

Inherited from:
Lists
Source
Lists.scala
def lpush[V : ByteStringSerializer](key: String, values: V*): Future[Long]

Attributes

Inherited from:
Lists
Source
Lists.scala
def lpushx[V : ByteStringSerializer](key: String, values: V*): Future[Long]

Attributes

Inherited from:
Lists
Source
Lists.scala
def lrange[R : ByteStringDeserializer](key: String, start: Long, stop: Long): Future[Seq[R]]

Attributes

Inherited from:
Lists
Source
Lists.scala
def lrem[V : ByteStringSerializer](key: String, count: Long, value: V): Future[Long]

Attributes

Inherited from:
Lists
Source
Lists.scala
def lset[V : ByteStringSerializer](key: String, index: Long, value: V): Future[Boolean]

Attributes

Inherited from:
Lists
Source
Lists.scala
def ltrim(key: String, start: Long, stop: Long): Future[Boolean]

Attributes

Inherited from:
Lists
Source
Lists.scala
def makeRedisClientActor(server: RedisServer, active: AtomicBoolean): ActorRef

Attributes

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala

Attributes

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala

Attributes

Inherited from:
Strings
Source
Strings.scala
def migrate(host: String, port: Int, key: String, destinationDB: Int, timeout: FiniteDuration, copy: Boolean, replace: Boolean, password: Option[String]): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala
def migrateMany(host: String, port: Int, keys: Seq[String], destinationDB: Int, timeout: FiniteDuration, copy: Boolean, replace: Boolean, password: Option[String]): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala
def move(key: String, db: Int): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala
def mset[V : ByteStringSerializer](keysValues: Map[String, V]): Future[Boolean]

Attributes

Inherited from:
Strings
Source
Strings.scala
def msetnx[V : ByteStringSerializer](keysValues: Map[String, V]): Future[Boolean]

Attributes

Inherited from:
Strings
Source
Strings.scala

Attributes

Inherited from:
Keys
Source
Keys.scala

Attributes

Inherited from:
Keys
Source
Keys.scala

Attributes

Inherited from:
Keys
Source
Keys.scala
def onConnect(redis: RedisCommands, server: RedisServer): Unit

Attributes

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala
def onConnectStatus(server: RedisServer, active: AtomicBoolean): Boolean => Unit

Attributes

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala

Attributes

Inherited from:
Keys
Source
Keys.scala
def pexpire(key: String, milliseconds: Long): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala
def pexpireat(key: String, millisecondsTimestamp: Long): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala
def pfadd[V : ByteStringSerializer](key: String, values: V*): Future[Long]

Attributes

Inherited from:
HyperLogLog
Source
HyperLogLog.scala
def pfcount(keys: String*): Future[Long]

Attributes

Inherited from:
HyperLogLog
Source
HyperLogLog.scala
def pfmerge(destKey: String, sourceKeys: String*): Future[Boolean]

Attributes

Inherited from:
HyperLogLog
Source
HyperLogLog.scala
def ping(): Future[String]

Attributes

Inherited from:
Connection
Source
Connection.scala

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product
def psetex[V : ByteStringSerializer](key: String, milliseconds: Long, value: V): Future[Boolean]

Attributes

Inherited from:
Strings
Source
Strings.scala
def pttl(key: String): Future[Long]

Attributes

Inherited from:
Keys
Source
Keys.scala
def publish[V : ByteStringSerializer](channel: String, value: V): Future[Long]

Attributes

Inherited from:
Publish
Source
Publish.scala
def quit(): Future[Boolean]

Attributes

Inherited from:
Connection
Source
Connection.scala

Attributes

Inherited from:
Keys
Source
Keys.scala
def redisConnectionPool: Seq[ActorRef]

Attributes

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala

Attributes

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala
def rename(key: String, newkey: String): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala
def renamenx(key: String, newkey: String): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala
def restore[V : ByteStringSerializer](key: String, ttl: Long, serializedValue: V): Future[Boolean]

Attributes

Inherited from:
Keys
Source
Keys.scala

Attributes

Inherited from:
Lists
Source
Lists.scala
def rpoplpush[R : ByteStringDeserializer](source: String, destination: String): Future[Option[R]]

Attributes

Inherited from:
Lists
Source
Lists.scala
def rpush[V : ByteStringSerializer](key: String, values: V*): Future[Long]

Attributes

Inherited from:
Lists
Source
Lists.scala
def rpushx[V : ByteStringSerializer](key: String, values: V*): Future[Long]

Attributes

Inherited from:
Lists
Source
Lists.scala
def sadd[V : ByteStringSerializer](key: String, members: V*): Future[Long]

Attributes

Inherited from:
Sets
Source
Sets.scala
def save(): Future[Boolean]

Attributes

Inherited from:
Server
Source
Server.scala
def scan(cursor: Int, count: Option[Int], matchGlob: Option[String]): Future[Cursor[Seq[String]]]

Attributes

Inherited from:
Keys
Source
Keys.scala
def scard(key: String): Future[Long]

Attributes

Inherited from:
Sets
Source
Sets.scala

Attributes

Inherited from:
Scripting
Source
Scripting.scala

Attributes

Inherited from:
Scripting
Source
Scripting.scala

Attributes

Inherited from:
Scripting
Source
Scripting.scala
def scriptLoad(script: String): Future[String]

Attributes

Inherited from:
Scripting
Source
Scripting.scala
def sdiff[R : ByteStringDeserializer](key: String, keys: String*): Future[Seq[R]]

Attributes

Inherited from:
Sets
Source
Sets.scala
def sdiffstore(destination: String, key: String, keys: String*): Future[Long]

Attributes

Inherited from:
Sets
Source
Sets.scala
def select(index: Int): Future[Boolean]

Attributes

Inherited from:
Connection
Source
Connection.scala
def send[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]

Attributes

Inherited from:
RoundRobinPoolRequest
Source
Request.scala
protected def send[T](redisConnection: ActorRef, redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]

Attributes

Inherited from:
RoundRobinPoolRequest
Source
Request.scala
def set[V : ByteStringSerializer](key: String, value: V, exSeconds: Option[Long], pxMilliseconds: Option[Long], NX: Boolean, XX: Boolean): Future[Boolean]

Attributes

Inherited from:
Strings
Source
Strings.scala
def setbit(key: String, offset: Long, value: Boolean): Future[Boolean]

Attributes

Inherited from:
Strings
Source
Strings.scala
def setex[V : ByteStringSerializer](key: String, seconds: Long, value: V): Future[Boolean]

Attributes

Inherited from:
Strings
Source
Strings.scala
def setnx[V : ByteStringSerializer](key: String, value: V): Future[Boolean]

Attributes

Inherited from:
Strings
Source
Strings.scala
def setrange[V : ByteStringSerializer](key: String, offset: Long, value: V): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala

Attributes

Inherited from:
Server
Source
Server.scala

Attributes

Inherited from:
Server
Source
Server.scala
def sinter[R : ByteStringDeserializer](key: String, keys: String*): Future[Seq[R]]

Attributes

Inherited from:
Sets
Source
Sets.scala
def sinterstore(destination: String, key: String, keys: String*): Future[Long]

Attributes

Inherited from:
Sets
Source
Sets.scala
def sismember[V : ByteStringSerializer](key: String, member: V): Future[Boolean]

Attributes

Inherited from:
Sets
Source
Sets.scala
def slaveof(host: String, port: Int): Future[Boolean]

Attributes

Inherited from:
Server
Source
Server.scala

Attributes

Inherited from:
Server
Source
Server.scala

Attributes

Inherited from:
Sets
Source
Sets.scala
def smove[V : ByteStringSerializer](source: String, destination: String, member: V): Future[Boolean]

Attributes

Inherited from:
Sets
Source
Sets.scala
def sort[R : ByteStringDeserializer](key: String, byPattern: Option[String], limit: Option[LimitOffsetCount], getPatterns: Seq[String], order: Option[Order], alpha: Boolean): Future[Seq[R]]

Attributes

Inherited from:
Keys
Source
Keys.scala
def sortStore(key: String, byPattern: Option[String], limit: Option[LimitOffsetCount], getPatterns: Seq[String], order: Option[Order], alpha: Boolean, store: String): Future[Long]

Attributes

Inherited from:
Keys
Source
Keys.scala

Attributes

Inherited from:
Sets
Source
Sets.scala
def srandmember[R : ByteStringDeserializer](key: String, count: Long): Future[Seq[R]]

Attributes

Inherited from:
Sets
Source
Sets.scala

Attributes

Inherited from:
Sets
Source
Sets.scala
def srem[V : ByteStringSerializer](key: String, members: V*): Future[Long]

Attributes

Inherited from:
Sets
Source
Sets.scala
def sscan[R : ByteStringDeserializer](key: String, cursor: Int, count: Option[Int], matchGlob: Option[String]): Future[Cursor[Seq[R]]]

Attributes

Inherited from:
Sets
Source
Sets.scala
def stop(): Unit

Disconnect from the server (stop the actor)

Disconnect from the server (stop the actor)

Attributes

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala
def strlen(key: String): Future[Long]

Attributes

Inherited from:
Strings
Source
Strings.scala
def sunion[R : ByteStringDeserializer](key: String, keys: String*): Future[Seq[R]]

Attributes

Inherited from:
Sets
Source
Sets.scala
def sunionstore(destination: String, key: String, keys: String*): Future[Long]

Attributes

Inherited from:
Sets
Source
Sets.scala
def swapdb(index1: Int, index2: Int): Future[Boolean]

Attributes

Inherited from:
Connection
Source
Connection.scala
def time(): Future[(Long, Long)]

Attributes

Inherited from:
Server
Source
Server.scala
def ttl(key: String): Future[Long]

Attributes

Inherited from:
Keys
Source
Keys.scala
def zadd[V : ByteStringSerializer](key: String, scoreMembers: (Double, V)*): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zaddWithOptions[V : ByteStringSerializer](key: String, options: Seq[ZaddOption], scoreMembers: (Double, V)*): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zcard(key: String): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zcount(key: String, min: Limit, max: Limit): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zincrby[V : ByteStringSerializer](key: String, increment: Double, member: V): Future[Double]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zinterstore(destination: String, key: String, keys: Seq[String], aggregate: Aggregate): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zinterstoreWeighted(destination: String, keys: Map[String, Double], aggregate: Aggregate): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zpopmax[R : ByteStringDeserializer](key: String, count: Long): Future[Seq[R]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zpopmin[R : ByteStringDeserializer](key: String, count: Long): Future[Seq[R]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zrange[R : ByteStringDeserializer](key: String, start: Long, stop: Long): Future[Seq[R]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zrangeWithscores[R : ByteStringDeserializer](key: String, start: Long, stop: Long): Future[Seq[(R, Double)]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zrangebylex[R : ByteStringDeserializer](key: String, min: Option[String], max: Option[String], limit: Option[(Long, Long)]): Future[Seq[R]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zrangebyscore[R : ByteStringDeserializer](key: String, min: Limit, max: Limit, limit: Option[(Long, Long)]): Future[Seq[R]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zrank[V : ByteStringSerializer](key: String, member: V): Future[Option[Long]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zrem[V : ByteStringSerializer](key: String, members: V*): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zremrangebylex(key: String, min: String, max: String): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zremrangebyrank(key: String, start: Long, stop: Long): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zremrangebyscore(key: String, min: Limit, max: Limit): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zrevrange[R : ByteStringDeserializer](key: String, start: Long, stop: Long): Future[Seq[R]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zrevrangeWithscores[R : ByteStringDeserializer](key: String, start: Long, stop: Long): Future[Seq[(R, Double)]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zrevrangebyscore[R : ByteStringDeserializer](key: String, min: Limit, max: Limit, limit: Option[(Long, Long)]): Future[Seq[R]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zrevrank[V : ByteStringSerializer](key: String, member: V): Future[Option[Long]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zscan[R : ByteStringDeserializer](key: String, cursor: Int, count: Option[Int], matchGlob: Option[String]): Future[Cursor[Seq[(Double, R)]]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zscore[V : ByteStringSerializer](key: String, member: V): Future[Option[Double]]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zunionstore(destination: String, key: String, keys: Seq[String], aggregate: Aggregate): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala
def zunionstoreWeighted(destination: String, keys: Map[String, Double], aggregate: Aggregate): Future[Long]

Attributes

Inherited from:
SortedSets
Source
SortedSets.scala

Concrete fields

Inherited fields

val next: AtomicInteger

Attributes

Inherited from:
RoundRobinPoolRequest
Source
Request.scala

Implicits

Inherited implicits

Attributes

Inherited from:
RedisClientPoolLike
Source
RedisPool.scala