RedisClientMasterSlaves
case class RedisClientMasterSlaves(master: RedisServer, slaves: Seq[RedisServer])(implicit _system: ActorSystem, redisDispatcher: RedisDispatcher) extends RedisCommands with Transactions
- Source:
- RedisPool.scala
trait Serializable
trait Product
trait Equals
trait Transactions
trait ActorRequest
trait RedisCommands
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
Value members
Concrete methods
Inherited methods
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
- Inherited from:
- Scripting
- Source:
- Scripting.scala
def geoRadiusByMember[K](key: String, member: String, dist: Int, dim: Measurement): Future[Seq[String]]
def geoRadiusByMemberWithOpt[K](key: String, member: String, dist: Int, dim: Measurement, opt: WithOption, count: Int): Future[Seq[String]]
def getset[V : ByteStringSerializer, R : ByteStringDeserializer](key: String, value: V): Future[Option[R]]
- Inherited from:
- Strings
- Source:
- Strings.scala
def zaddWithOptions[V : ByteStringSerializer](key: String, options: Seq[ZaddOption], scoreMembers: (Double, V)*): Future[Long]
- Inherited from:
- SortedSets
- Source:
- SortedSets.scala
def zrangeWithscores[R : ByteStringDeserializer](key: String, start: Long, stop: Long): Future[Seq[(R, Double)]]
- Inherited from:
- SortedSets
- Source:
- SortedSets.scala
def zrangebyscore[R : ByteStringDeserializer](key: String, min: Limit, max: Limit, limit: Option[(Long, Long)]): Future[Seq[R]]
- Inherited from:
- SortedSets
- Source:
- SortedSets.scala
def zrevrangeWithscores[R : ByteStringDeserializer](key: String, start: Long, stop: Long): Future[Seq[(R, Double)]]
- Inherited from:
- SortedSets
- Source:
- SortedSets.scala
def zrevrangebyscore[R : ByteStringDeserializer](key: String, min: Limit, max: Limit, limit: Option[(Long, Long)]): Future[Seq[R]]
- Inherited from:
- SortedSets
- Source:
- SortedSets.scala