Object/Class

scredis

RedisCluster

Related Docs: class RedisCluster | package scredis

Permalink

object RedisCluster

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisCluster
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(configName: String, path: String): RedisCluster

    Permalink

    Constructs a scredis.RedisCluster instance from a config file and using the provided path.

    Constructs a scredis.RedisCluster instance from a config file and using the provided path.

    configName

    config filename

    path

    path pointing to the scredis config object

    returns

    the constructed scredis.RedisCluster

    Note

    The path must include to the scredis object, e.g. x.y.scredis

  5. def apply(configName: String): RedisCluster

    Permalink

    Constructs a scredis.RedisCluster instance from a config file.

    Constructs a scredis.RedisCluster instance from a config file.

    configName

    config filename

    returns

    the constructed scredis.RedisCluster

    Note

    The config file must contain the scredis object at its root. This constructor is equivalent to

    Redis(configName, "scredis")
  6. def apply(config: Config): RedisCluster

    Permalink

    Constructs a scredis.RedisCluster instance from a com.typesafe.Config.

    Constructs a scredis.RedisCluster instance from a com.typesafe.Config.

    config

    a com.typesafe.Config

    returns

    the constructed scredis.RedisCluster

    Note

    The config must contain the scredis object at its root.

  7. def apply(config: RedisConfig, systemOpt: Option[ActorSystem]): RedisCluster

    Permalink

    Constructs a scredis.RedisCluster instance from a scredis.RedisConfig.

    Constructs a scredis.RedisCluster instance from a scredis.RedisConfig.

    config

    a scredis.RedisConfig

    returns

    the constructed scredis.RedisCluster

  8. def apply(node: Server, nodes: Server*): RedisCluster

    Permalink

    Constructs a scredis.RedisCluster instance with given seed nodes, using the default config for all other parameters.

    Constructs a scredis.RedisCluster instance with given seed nodes, using the default config for all other parameters.

    returns

    the constructed scredis.RedisCluster

  9. def apply(nodes: Seq[Server] = ..., maxRetries: Int = 4, receiveTimeoutOpt: Option[FiniteDuration] = ..., connectTimeout: FiniteDuration = ..., maxWriteBatchSize: Int = ..., tcpSendBufferSizeHint: Int = ..., tcpReceiveBufferSizeHint: Int = ..., akkaListenerDispatcherPath: String = ..., akkaIODispatcherPath: String = ..., akkaDecoderDispatcherPath: String = ..., tryAgainWait: FiniteDuration = ..., clusterDownWait: FiniteDuration = ..., systemOpt: Option[ActorSystem] = None, failCommandOnConnecting: Boolean = ..., passwordOpt: Option[String] = ...): RedisCluster

    Permalink

    Constructs a scredis.RedisCluster instance using provided parameters.

    Constructs a scredis.RedisCluster instance using provided parameters.

    nodes

    list of server nodes, used as seed nodes to initially connect to the cluster.

    maxRetries

    maximum number of retries and redirects to perform for a single command

    receiveTimeoutOpt

    optional batch receive timeout

    connectTimeout

    connection timeout

    maxWriteBatchSize

    max number of bytes to send as part of a batch

    tcpSendBufferSizeHint

    size hint of the tcp send buffer, in bytes

    tcpReceiveBufferSizeHint

    size hint of the tcp receive buffer, in bytes

    akkaListenerDispatcherPath

    path to listener dispatcher definition

    akkaIODispatcherPath

    path to io dispatcher definition

    akkaDecoderDispatcherPath

    path to decoder dispatcher definition

    tryAgainWait

    time to wait after a TRYAGAIN response by a cluster node

    clusterDownWait

    time to wait for a retry after CLUSTERDOWN response

    systemOpt

    Actor System (optionally)

    failCommandOnConnecting

    indicates whether to fail fast on all requests until there is a working connection.

    passwordOpt

    Auth password (optionally)

    returns

    the constructed scredis.RedisCluster

  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped