Packages

c

monix.connect.redis.client

ClusterConnection

class ClusterConnection extends RedisConnection

Represents a connection to a set of redis servers (cluster), extending the RedisConnection interface that defines the set of methods to create a connection that can encode in UTF and ByteArray with custom Codecs.

Source
ClusterConnection.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ClusterConnection
  2. RedisConnection
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ClusterConnection(uris: List[RedisUri])

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def connectByteArray[K, V](implicit keyCodec: BytesCodec[K], valueCodec: BytesCodec[V]): Resource[Task, RedisCmd[K, V]]

    Connect asynchronously to Redis.

    Connect asynchronously to Redis. It requires a codec for keys and values that will encode/decode respectively as K and V to/from Charset.

    K

    the connection's key type.

    V

    the connection's value type.

    keyCodec

    a BytesCodec to encode/decode the key to .

    valueCodec

    a BytesCodec to encode/decode the value to .

    returns

    A Resource that acquires a redis connection and exposes the usage of the V] .

    Definition Classes
    ClusterConnectionRedisConnection
    See also

    connectByteArray and connectByteArray for respective examples.

  7. def connectByteArray: Resource[Task, RedisCmd[Array[Byte], Array[Byte]]]

    Connect asynchronously to a Redis Cluster.

    Connect asynchronously to a Redis Cluster. Encodes and decodes keys and values.

    returns

    A Resource that acquires a redis connection and exposes the usage of the RedisCmd commands that will be released afterwards.

    Definition Classes
    ClusterConnectionRedisConnection
  8. def connectUtf[K, V](implicit keyCodec: UtfCodec[K], valueCodec: UtfCodec[V]): Resource[Task, RedisCmd[K, V]]

    Connect asynchronously to a Redis Cluster.

    Connect asynchronously to a Redis Cluster. It requires a codec for keys and values that will encode/decode respectively as K and V to/from UTF Charset.

    K

    the connection's key type.

    V

    the connection's value type.

    keyCodec

    a UtfCodec to encode/decode the key to UTF.

    valueCodec

    a UtfCodec to encode/decode the value to UTF.

    returns

    A Resource that acquires a redis connection and exposes the usage of the V] .

    Definition Classes
    ClusterConnectionRedisConnection
    See also

    connectUtf and connectUtf for respective examples.

  9. def connectUtf: Resource[Task, RedisCmd[String, String]]

    Connect asynchronously to a Redis Cluster.

    Connect asynchronously to a Redis Cluster. Encodes and decodes String keys and values in UTF Charset.

    returns

    A Resource that acquires a redis connection and exposes the usage of the RedisCmd String commands that will be released afterwards.

    Definition Classes
    ClusterConnectionRedisConnection
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from RedisConnection

Inherited from AnyRef

Inherited from Any

Ungrouped