redis
package
redis
Type Members
-
-
-
-
-
-
-
-
-
-
case class
Operation[RedisReplyT <: RedisReply, T](redisCommand: RedisCommand[RedisReplyT, T], promise: Promise[T]) extends Product with Serializable
-
case class
RedisBlockingClient(host: String = "localhost", port: Int = 6379, password: Option[String] = scala.None, db: Option[Int] = scala.None, name: String = "RedisBlockingClient")(implicit _system: ActorRefFactory) extends RedisClientActorLike with BLists with Product with Serializable
-
case class
RedisClient(host: String = "localhost", port: Int = 6379, password: Option[String] = scala.None, db: Option[Int] = scala.None, name: String = "RedisClient")(implicit _system: ActorRefFactory) extends RedisClientActorLike with RedisCommands with Transactions with Product with Serializable
-
-
-
case class
RedisClientPool(redisServers: Seq[RedisServer], name: String = "RedisClientPool")(implicit _system: ActorRefFactory) extends RedisClientPoolLike with RedisCommands with Product with Serializable
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
case class
RedisPubSub(host: String = "localhost", port: Int = 6379, channels: Seq[String], patterns: Seq[String], onMessage: (Message) ⇒ Unit = ..., onPMessage: (PMessage) ⇒ Unit = ..., authPassword: Option[String] = scala.None, name: String = "RedisPubSub")(implicit system: ActorRefFactory) extends Product with Serializable
-
-
-
-
case class
RedisServer(host: String = "localhost", port: Int = 6379, password: Option[String] = scala.None, db: Option[Int] = scala.None) extends Product with Serializable
-
trait
Request extends AnyRef
-
-
case class
SentinelClient(host: String = "localhost", port: Int = 26379, onMasterChange: (String, String, Int) ⇒ Unit = ..., onNewSentinel: (String, String, Int) ⇒ Unit = ..., onSentinelDown: (String, String, Int) ⇒ Unit = ..., name: String = "SentinelClient")(implicit _system: ActorSystem) extends RedisClientActorLike with SentinelCommands with Product with Serializable
-
-
-
-
-
-
case class
Transaction(commands: Seq[Operation[_, _]]) extends Product with Serializable
Value Members
-
-
-
-
-
-
package
api
-
-