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. case class Cursor[T](index: Int, data: T) extends Product with Serializable

    Permalink
  10. trait MultiBulkConverter[A] extends AnyRef

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

    Permalink
  12. 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
  13. 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
  14. abstract class RedisClientActorLike extends ActorRequest

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

    Permalink
  16. case class RedisClientMutablePool(redisServers: Seq[RedisServer], name: String = "RedisClientPool")(implicit system: ActorSystem) extends RedisClientPoolLike with RedisCommands with Product with Serializable

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

    Permalink
  18. abstract class RedisClientPoolLike extends RoundRobinPoolRequest

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

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

    Permalink
  21. trait RedisCommandBulkDouble extends RedisCommandBulk[Double]

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

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

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

    Permalink
  25. trait RedisCommandIntegerBoolean extends RedisCommandInteger[Boolean]

    Permalink
  26. trait RedisCommandIntegerLong extends RedisCommandInteger[Long]

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

    Permalink
  28. trait RedisCommandMultiBulkCursor[R] extends RedisCommandMultiBulk[Cursor[R]]

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

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

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

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

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

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

    Permalink
  35. trait RedisCommandStatusBoolean extends RedisCommandStatus[Boolean]

    Permalink
  36. trait RedisCommandStatusString extends RedisCommandStatus[String]

    Permalink
  37. 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
  38. case class RedisConnection(actor: ActorRef, active: Ref[Boolean] = Ref(false)) extends Product with Serializable

    Permalink
  39. 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
  40. trait RedisReplyDeserializer[T] extends AnyRef

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

    Permalink
  42. trait RedisReplyDeserializerLowPriority extends RedisReplyDeserializerDefault

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

    Permalink
  44. trait Request extends AnyRef

    Permalink
  45. trait RoundRobinPoolRequest extends AnyRef

    Permalink
  46. case class SentinelClient(host: String = "localhost", port: Int = 26379, onMasterChange: (String, String, Int) ⇒ Unit = ..., onNewSentinel: (String, String, Int) ⇒ Unit = ..., onSentinelDown: (String, String, Int) ⇒ Unit = ..., onNewSlave: (String, String, Int) ⇒ Unit = ..., onSlaveDown: (String, String, Int) ⇒ Unit = ..., name: String = "SentinelClient")(implicit _system: ActorSystem) extends RedisClientActorLike with SentinelCommands with Product with Serializable

    Permalink
  47. trait SentinelCommands extends Sentinel

    Permalink
  48. abstract class SentinelMonitored extends AnyRef

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

    Permalink
  50. abstract class SentinelMonitoredRedisBlockingClientLike extends SentinelMonitored with ActorRequest

    Permalink
  51. 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
  52. abstract class SentinelMonitoredRedisClientLike extends SentinelMonitored with ActorRequest

    Permalink
  53. case class SentinelMonitoredRedisClientMasterSlaves(sentinels: Seq[(String, Int)] = Seq(("localhost", 26379)), master: String)(implicit _system: ActorSystem) extends SentinelMonitored with ActorRequest with RedisCommands with Transactions with Product with Serializable

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

    Permalink

Ungrouped