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 getJdkSslEngineOptions: JdkSSLEngineOptions
  29. def getKeyStoreOptions: JksOptions
  30. def getLocalAddress: String
  31. def getLogActivity: Boolean
  32. def getMasterName: String
  33. def getMetricsName: String
  34. def getOpenSslEngineOptions: OpenSSLEngineOptions
  35. def getPemKeyCertOptions: PemKeyCertOptions
  36. def getPemTrustOptions: PemTrustOptions
  37. def getPfxKeyCertOptions: PfxOptions
  38. def getPfxTrustOptions: PfxOptions
  39. def getPort: Int
  40. def getProxyOptions: ProxyOptions
  41. def getReceiveBufferSize: Int
  42. def getReconnectAttempts: Int
    Definition Classes
    RedisOptionsNetClientOptions
  43. def getReconnectInterval: Long
    Definition Classes
    RedisOptionsNetClientOptions
  44. def getSelect: Int
  45. def getSendBufferSize: Int
  46. def getSentinels: Buffer[String]
  47. def getSoLinger: Int
  48. def getTrafficClass: Int
  49. def getTrustStoreOptions: JksOptions
  50. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  51. def isBinary: Boolean
  52. def isDomainSocket: Boolean
  53. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  54. def isReuseAddress: Boolean
  55. def isReusePort: Boolean
  56. def isSsl: Boolean
  57. def isTcpCork: Boolean
  58. def isTcpFastOpen: Boolean
  59. def isTcpKeepAlive: Boolean
  60. def isTcpNoDelay: Boolean
  61. def isTcpQuickAck: Boolean
  62. def isTrustAll: Boolean
  63. def isUseAlpn: Boolean
  64. def isUsePooledBuffers: Boolean
  65. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  66. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  67. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  68. 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.

  69. def setAuth(value: String): RedisOptions

    Set the password for authentication at connection time.

  70. 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

  71. def setConnectTimeout(value: Int): RedisOptions

    Set the connect timeout

    Set the connect timeout

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

    Set the domain socket enabled option, default false.

  73. def setDomainSocketAddress(value: String): RedisOptions

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

  74. def setEnabledSecureTransportProtocols(value: Set[String]): RedisOptions
  75. 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

  76. 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

  77. 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
  78. def setIdleTimeout(value: Int): RedisOptions

    Set the idle timeout, in seconds.

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

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  79. def setJdkSslEngineOptions(value: JdkSSLEngineOptions): RedisOptions
  80. 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
  81. 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
  82. 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
  83. def setMasterName(value: String): RedisOptions

    Set name of Redis master (used with Sentinel).

  84. 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
  85. def setOpenSslEngineOptions(value: OpenSSLEngineOptions): RedisOptions
  86. 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
  87. def setPemTrustOptions(value: PemTrustOptions): RedisOptions

    Set the trust options in pem format

    Set the trust options in pem format

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

    Set the key/cert options in pfx format.

    Set the key/cert options in pfx format.

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

    Set the trust options in pfx format

    Set the trust options in pfx format

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

    Set the tcp port where the Redis server is listening.

  91. 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
  92. def setReceiveBufferSize(value: Int): RedisOptions

    Set the TCP receive buffer size

    Set the TCP receive buffer size

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

    Set the value of reconnect attempts

    Set the value of reconnect attempts

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

    Set the reconnect interval

    Set the reconnect interval

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

    Set the value of reuse address

    Set the value of reuse address

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptionsNetworkOptions
  96. 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
  97. 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

  98. def setSendBufferSize(value: Int): RedisOptions

    Set the TCP send buffer size

    Set the TCP send buffer size

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

    Set whether SO_linger keep alive is enabled

    Set whether SO_linger keep alive is enabled

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

    Set whether SSL/TLS is enabled

    Set whether SSL/TLS is enabled

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  102. 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
  103. 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
  104. def setTcpKeepAlive(value: Boolean): RedisOptions

    Set whether TCP keep alive is enabled

    Set whether TCP keep alive is enabled

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

    Set whether TCP no delay is enabled

    Set whether TCP no delay is enabled

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  106. 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
  107. def setTrafficClass(value: Int): RedisOptions

    Set the value of traffic class

    Set the value of traffic class

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

    Set whether all server certificates should be trusted

    Set whether all server certificates should be trusted

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBase
  109. 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
  110. def setUseAlpn(value: Boolean): RedisOptions

    Set the ALPN usage.

    Set the ALPN usage.

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

    Set whether Netty pooled buffers are enabled

    Set whether Netty pooled buffers are enabled

    Definition Classes
    RedisOptionsNetClientOptionsClientOptionsBaseTCPSSLOptions
  112. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  113. def toString(): String
    Definition Classes
    AnyRef → Any
  114. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  115. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  116. 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