Package

redis

Permalink

package redis

Visibility
  1. Public
  2. All

Type Members

  1. trait ActorRequest extends AnyRef

    Permalink
  2. trait BufferedRequest extends AnyRef

    Permalink
  3. trait ByteStringDeserializer[T] extends AnyRef

    Permalink
    Annotations
    @implicitNotFound( ... )
  4. trait ByteStringDeserializerDefault extends AnyRef

    Permalink
  5. trait ByteStringDeserializerLowPriority extends ByteStringDeserializerDefault

    Permalink
  6. trait ByteStringFormatter[T] extends ByteStringSerializer[T] with ByteStringDeserializer[T]

    Permalink
  7. trait ByteStringSerializer[K] extends AnyRef

    Permalink
    Annotations
    @implicitNotFound( ... )
  8. trait ByteStringSerializerLowPriority extends AnyRef

    Permalink
  9. trait MultiBulkConverter[A] extends AnyRef

    Permalink
  10. case class Operation[RedisReplyT <: RedisReply, T](redisCommand: RedisCommand[RedisReplyT, T], promise: Promise[T]) extends Product with Serializable

    Permalink
  11. case class RedisBlockingClient(host: String = "localhost", port: Int = 6379, password: Option[String] = None, db: Option[Int] = None, name: String = "RedisBlockingClient")(implicit _system: ActorRefFactory) extends RedisClientActorLike with BLists with Product with Serializable

    Permalink
  12. case class RedisClient(host: String = "localhost", port: Int = 6379, password: Option[String] = None, db: Option[Int] = None, name: String = "RedisClient")(implicit _system: ActorRefFactory) extends RedisClientActorLike with RedisCommands with Transactions with Product with Serializable

    Permalink
  13. abstract class RedisClientActorLike extends ActorRequest

    Permalink
  14. case class RedisClientMasterSlaves(master: RedisServer, slaves: Seq[RedisServer])(implicit _system: ActorRefFactory) extends RedisCommands with Transactions with Product with Serializable

    Permalink
  15. case class RedisClientPool(redisServers: Seq[RedisServer], name: String = "RedisClientPool")(implicit _system: ActorRefFactory) extends RedisClientPoolLike with RedisCommands with Product with Serializable

    Permalink
  16. abstract class RedisClientPoolLike extends RoundRobinPoolRequest

    Permalink
  17. trait RedisCommand[RedisReplyT <: RedisReply, T] extends AnyRef

    Permalink
  18. trait RedisCommandBulk[T] extends RedisCommand[Bulk, T]

    Permalink
  19. trait RedisCommandBulkDouble extends RedisCommandBulk[Double]

    Permalink
  20. trait RedisCommandBulkOptionByteString[R] extends RedisCommandBulk[Option[R]]

    Permalink
  21. trait RedisCommandBulkOptionDouble extends RedisCommandBulk[Option[Double]]

    Permalink
  22. trait RedisCommandInteger[T] extends RedisCommand[Integer, T]

    Permalink
  23. trait RedisCommandIntegerBoolean extends RedisCommandInteger[Boolean]

    Permalink
  24. trait RedisCommandIntegerLong extends RedisCommandInteger[Long]

    Permalink
  25. trait RedisCommandMultiBulk[T] extends RedisCommand[MultiBulk, T]

    Permalink
  26. trait RedisCommandMultiBulkSeqByteString[R] extends RedisCommandMultiBulk[Seq[R]]

    Permalink
  27. trait RedisCommandMultiBulkSeqByteStringDouble[R] extends RedisCommandMultiBulk[Seq[(R, Double)]]

    Permalink
  28. trait RedisCommandRedisReply[T] extends RedisCommand[RedisReply, T]

    Permalink
  29. trait RedisCommandRedisReplyOptionLong extends RedisCommandRedisReply[Option[Long]]

    Permalink
  30. trait RedisCommandRedisReplyRedisReply[R] extends RedisCommandRedisReply[R]

    Permalink
  31. trait RedisCommandStatus[T] extends RedisCommand[Status, T]

    Permalink
  32. trait RedisCommandStatusBoolean extends RedisCommandStatus[Boolean]

    Permalink
  33. trait RedisCommandStatusString extends RedisCommandStatus[String]

    Permalink
  34. trait RedisCommands extends Keys with Strings with Hashes with Lists with Sets with SortedSets with Publish with Scripting with Connection with Server with HyperLogLog

    Permalink
  35. case class RedisPubSub(host: String = "localhost", port: Int = 6379, channels: Seq[String], patterns: Seq[String], onMessage: (Message) ⇒ Unit = _ => {}, onPMessage: (PMessage) ⇒ Unit = _ => {}, authPassword: Option[String] = None, name: String = "RedisPubSub")(implicit system: ActorRefFactory) extends Product with Serializable

    Permalink
  36. trait RedisReplyDeserializer[T] extends AnyRef

    Permalink
    Annotations
    @implicitNotFound( ... )
  37. trait RedisReplyDeserializerDefault extends AnyRef

    Permalink
  38. trait RedisReplyDeserializerLowPriority extends RedisReplyDeserializerDefault

    Permalink
  39. case class RedisServer(host: String = "localhost", port: Int = 6379, password: Option[String] = None, db: Option[Int] = None, active: Ref[Boolean] = Ref(false)) extends Product with Serializable

    Permalink
  40. trait Request extends AnyRef

    Permalink
  41. trait RoundRobinPoolRequest extends AnyRef

    Permalink
  42. 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

    Permalink
  43. trait SentinelCommands extends Sentinel

    Permalink
  44. abstract class SentinelMonitored extends AnyRef

    Permalink
  45. case class SentinelMonitoredRedisBlockingClient(sentinels: Seq[(String, Int)] = Seq(("localhost", 26379)), master: String)(implicit system: ActorSystem) extends SentinelMonitoredRedisClientLike with BLists with Product with Serializable

    Permalink
  46. case class SentinelMonitoredRedisClient(sentinels: Seq[(String, Int)] = Seq(("localhost", 26379)), master: String)(implicit system: ActorSystem) extends SentinelMonitoredRedisClientLike with RedisCommands with Transactions with Product with Serializable

    Permalink
  47. abstract class SentinelMonitoredRedisClientLike extends SentinelMonitored with ActorRequest

    Permalink
  48. case class Transaction(commands: Seq[Operation[_, _]]) extends Product with Serializable

    Permalink

Ungrouped