Packages

trait RedisConnection extends AnyRef

Trait that defines the generic set of methods to connect with Redis. It supports encoding and decoding in Utf and ByteArray with custom codecs.

It currently supports ClusterConnection and StandaloneConnection for cluster and single connections to Redis.

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

Abstract Value Members

  1. abstract 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] .

    See also

    connectByteArray and connectByteArray for respective examples.

  2. abstract 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.

  3. abstract 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] .

    See also

    connectUtf and connectUtf for respective examples.

  4. abstract 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.

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

Inherited from AnyRef

Inherited from Any

Ungrouped