Packages

class RedisOptions extends NetClientOptions

This object controls the connection setting to the Redis Server. There is no need to specify most of the settings since it has built the following sensible defaults:

* encoding: UTF-8 * host: localhost * port: 6379 * tcpKeepAlive: true * tcpNoDelay: true * binary: false

However there are two extra properties that have no defaults since they are optional:

* auth * select

The usage of this two extra properties is to setup required authentication and optionally the selection of the active database at connection time. If you define this extra properties on every connection to Redis server this client will perform the authentication handshake and database selection, however if you don't do this and call io.vertx.scala.redis.RedisClient yourself in case of connection failure the client will not be able to perform the correct authentication handshake.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisOptions
  2. NetClientOptions
  3. ClientOptionsBase
  4. TCPSSLOptions
  5. NetworkOptions
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RedisOptions(_asJava: redis.RedisOptions)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addCrlPath(value: String): RedisOptions

    Add a CRL path

    Add a CRL path

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  5. def addCrlValue(value: Buffer): RedisOptions

    Add a CRL value

    Add a CRL value

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  6. def addEnabledCipherSuite(value: String): RedisOptions

    Add an enabled cipher suite, appended to the ordered suites.

    Add an enabled cipher suite, appended to the ordered suites.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  7. def addEnabledSecureTransportProtocol(value: String): RedisOptions

    Sets the list of enabled SSL/TLS protocols.

    Sets the list of enabled SSL/TLS protocols.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  8. def addSentinel(value: String): RedisOptions

    Set the list of Sentinels.

  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def asJava: redis.RedisOptions
    Definition Classes
    RedisOptionsNetClientOptions
  11. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def getAddress: String
  16. def getAuth: String
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def getConnectTimeout: Int
  19. def getCrlPaths: Buffer[String]
  20. def getCrlValues: Buffer[Buffer]
  21. def getDomainSocketAddress: String
  22. def getEnabledCipherSuites: Set[String]
  23. def getEnabledSecureTransportProtocols: Set[String]
  24. def getEncoding: String
  25. def getHost: String
  26. def getHostnameVerificationAlgorithm: String
    Definition Classes
    RedisOptionsNetClientOptions
  27. def getIdleTimeout: Int
  28. def getIdleTimeoutUnit: TimeUnit
  29. def getJdkSslEngineOptions: JdkSSLEngineOptions
  30. def getKeyStoreOptions: JksOptions
  31. def getLocalAddress: String
  32. def getLogActivity: Boolean
  33. def getMasterName: String
  34. def getMetricsName: String
  35. def getOpenSslEngineOptions: OpenSSLEngineOptions
  36. def getPemKeyCertOptions: PemKeyCertOptions
  37. def getPemTrustOptions: PemTrustOptions
  38. def getPfxKeyCertOptions: PfxOptions
  39. def getPfxTrustOptions: PfxOptions
  40. def getPort: Int
  41. def getProxyOptions: ProxyOptions
  42. def getReceiveBufferSize: Int
  43. def getReconnectAttempts: Int
    Definition Classes
    RedisOptionsNetClientOptions
  44. def getReconnectInterval: Long
    Definition Classes
    RedisOptionsNetClientOptions
  45. def getSelect: Int
  46. def getSendBufferSize: Int
  47. def getSentinels: Buffer[String]
  48. def getSoLinger: Int
  49. def getTrafficClass: Int
  50. def getTrustStoreOptions: JksOptions
  51. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  52. def isBinary: Boolean
  53. def isDomainSocket: Boolean
  54. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  55. def isReuseAddress: Boolean
  56. def isReusePort: Boolean
  57. def isSsl: Boolean
  58. def isTcpCork: Boolean
  59. def isTcpFastOpen: Boolean
  60. def isTcpKeepAlive: Boolean
  61. def isTcpNoDelay: Boolean
  62. def isTcpQuickAck: Boolean
  63. def isTrustAll: Boolean
  64. def isUseAlpn: Boolean
  65. def isUsePooledBuffers: Boolean
  66. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  67. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  68. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  69. def setAddress(value: String): RedisOptions

    Set the eventbus address prefix for PUB/SUB.

    Set the eventbus address prefix for PUB/SUB. * @param address address prefix.

  70. def setAuth(value: String): RedisOptions

    Set the password for authentication at connection time.

  71. def setBinary(value: Boolean): RedisOptions

    Set the messages to/from redis as binary, default false.

    Set the messages to/from redis as binary, default false. * @param binary use binary messages

  72. def setConnectTimeout(value: Int): RedisOptions

    Set the connect timeout

    Set the connect timeout

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBase
  73. def setDomainSocket(value: Boolean): RedisOptions

    Set the domain socket enabled option, default false.

  74. def setDomainSocketAddress(value: String): RedisOptions

    Set the domain socket address where the Redis server is listening.

  75. def setEnabledSecureTransportProtocols(value: Set[String]): RedisOptions
  76. def setEncoding(value: String): RedisOptions

    Set the user defined character encoding, e.g.: iso-8859-1.

    Set the user defined character encoding, e.g.: iso-8859-1. * @param encoding the user character encoding

  77. def setHost(value: String): RedisOptions

    Set the host name where the Redis server is listening.

    Set the host name where the Redis server is listening. * @param host host name

  78. def setHostnameVerificationAlgorithm(value: String): RedisOptions

    Set the hostname verification algorithm interval To disable hostname verification, set hostnameVerificationAlgorithm to an empty String

    Set the hostname verification algorithm interval To disable hostname verification, set hostnameVerificationAlgorithm to an empty String

    Definition Classes
    RedisOptionsNetClientOptions
  79. def setIdleTimeout(value: Int): RedisOptions

    Set the idle timeout, default time unit is seconds.

    Set the idle timeout, default time unit is seconds. Zero means don't timeout. This determines if a connection will timeout and be closed if no data is received within the timeout.

    If you want change default time unit, use NetClientOptions

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  80. def setIdleTimeoutUnit(value: TimeUnit): RedisOptions

    Set the idle timeout unit.

    Set the idle timeout unit. If not specified, default is seconds.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  81. def setJdkSslEngineOptions(value: JdkSSLEngineOptions): RedisOptions
  82. def setKeyStoreOptions(value: JksOptions): RedisOptions

    Set the key/cert options in jks format, aka Java keystore.

    Set the key/cert options in jks format, aka Java keystore.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  83. def setLocalAddress(value: String): RedisOptions

    Set the local interface to bind for network connections.

    Set the local interface to bind for network connections. When the local address is null, it will pick any local address, the default local address is null.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBase
  84. def setLogActivity(value: Boolean): RedisOptions

    Set to true to enabled network activity logging: Netty's pipeline is configured for logging on Netty's logger.

    Set to true to enabled network activity logging: Netty's pipeline is configured for logging on Netty's logger.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptionsNetworkOptions
  85. def setMasterName(value: String): RedisOptions

    Set name of Redis master (used with Sentinel).

  86. def setMetricsName(value: String): RedisOptions

    Set the metrics name identifying the reported metrics, useful for grouping metrics with the same name.

    Set the metrics name identifying the reported metrics, useful for grouping metrics with the same name.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBase
  87. def setOpenSslEngineOptions(value: OpenSSLEngineOptions): RedisOptions
  88. def setPemKeyCertOptions(value: PemKeyCertOptions): RedisOptions

    Set the key/cert store options in pem format.

    Set the key/cert store options in pem format.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  89. def setPemTrustOptions(value: PemTrustOptions): RedisOptions

    Set the trust options in pem format

    Set the trust options in pem format

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  90. def setPfxKeyCertOptions(value: PfxOptions): RedisOptions

    Set the key/cert options in pfx format.

    Set the key/cert options in pfx format.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  91. def setPfxTrustOptions(value: PfxOptions): RedisOptions

    Set the trust options in pfx format

    Set the trust options in pfx format

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  92. def setPort(value: Int): RedisOptions

    Set the tcp port where the Redis server is listening.

  93. def setProxyOptions(value: ProxyOptions): RedisOptions

    Set proxy options for connections via CONNECT proxy (e.g.

    Set proxy options for connections via CONNECT proxy (e.g. Squid) or a SOCKS proxy.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBase
  94. def setReceiveBufferSize(value: Int): RedisOptions

    Set the TCP receive buffer size

    Set the TCP receive buffer size

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptionsNetworkOptions
  95. def setReconnectAttempts(value: Int): RedisOptions

    Set the value of reconnect attempts

    Set the value of reconnect attempts

    Definition Classes
    RedisOptionsNetClientOptions
  96. def setReconnectInterval(value: Long): RedisOptions

    Set the reconnect interval

    Set the reconnect interval

    Definition Classes
    RedisOptionsNetClientOptions
  97. def setReuseAddress(value: Boolean): RedisOptions

    Set the value of reuse address

    Set the value of reuse address

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptionsNetworkOptions
  98. def setReusePort(value: Boolean): RedisOptions

    Set the value of reuse port.

    Set the value of reuse port.

    This is only supported by native transports.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptionsNetworkOptions
  99. def setSelect(value: Int): RedisOptions

    Set the database to select at connection time.

    Set the database to select at connection time. * @param select database id

  100. def setSendBufferSize(value: Int): RedisOptions

    Set the TCP send buffer size

    Set the TCP send buffer size

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptionsNetworkOptions
  101. def setSentinels(value: Buffer[String]): RedisOptions
  102. def setSoLinger(value: Int): RedisOptions

    Set whether SO_linger keep alive is enabled

    Set whether SO_linger keep alive is enabled

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  103. def setSsl(value: Boolean): RedisOptions

    Set whether SSL/TLS is enabled

    Set whether SSL/TLS is enabled

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  104. def setTcpCork(value: Boolean): RedisOptions

    Enable the TCP_CORK option - only with linux native transport.

    Enable the TCP_CORK option - only with linux native transport.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  105. def setTcpFastOpen(value: Boolean): RedisOptions

    Enable the TCP_FASTOPEN option - only with linux native transport.

    Enable the TCP_FASTOPEN option - only with linux native transport.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  106. def setTcpKeepAlive(value: Boolean): RedisOptions

    Set whether TCP keep alive is enabled

    Set whether TCP keep alive is enabled

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  107. def setTcpNoDelay(value: Boolean): RedisOptions

    Set whether TCP no delay is enabled

    Set whether TCP no delay is enabled

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  108. def setTcpQuickAck(value: Boolean): RedisOptions

    Enable the TCP_QUICKACK option - only with linux native transport.

    Enable the TCP_QUICKACK option - only with linux native transport.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  109. def setTrafficClass(value: Int): RedisOptions

    Set the value of traffic class

    Set the value of traffic class

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptionsNetworkOptions
  110. def setTrustAll(value: Boolean): RedisOptions

    Set whether all server certificates should be trusted

    Set whether all server certificates should be trusted

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBase
  111. def setTrustStoreOptions(value: JksOptions): RedisOptions

    Set the trust options in jks format, aka Java truststore

    Set the trust options in jks format, aka Java truststore

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  112. def setUseAlpn(value: Boolean): RedisOptions

    Set the ALPN usage.

    Set the ALPN usage.

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  113. def setUsePooledBuffers(value: Boolean): RedisOptions

    Set whether Netty pooled buffers are enabled

    Set whether Netty pooled buffers are enabled

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  114. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  115. def toString(): String
    Definition Classes
    AnyRef → Any
  116. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  117. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  118. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from NetClientOptions

Inherited from ClientOptionsBase

Inherited from TCPSSLOptions

Inherited from NetworkOptions

Inherited from AnyRef

Inherited from Any

Ungrouped