object RedisClient

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

Type Members

  1. sealed trait Aggregate extends AnyRef
  2. sealed trait Mode extends AnyRef
  3. sealed trait SortOrder extends AnyRef

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() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hpipeline[F[+_], In <: HList](client: RedisClient[F, PIPE.type])(commands: () => F[In])(implicit arg0: Concurrent[F], arg1: ContextShift[F], arg2: Log[F]): F[Resp[Option[List[Any]]]]

    API for pipeline instructions.

    API for pipeline instructions. Allows HList to be used for setting up the pipeline

    client

    the pipeline client

    returns

    response from server

  11. def htransaction[F[+_], In <: HList](client: RedisClient[F, TRANSACT.type])(commands: () => In)(implicit arg0: Concurrent[F], arg1: ContextShift[F], arg2: Log[F]): F[Resp[Option[List[Any]]]]

    API for transaction.

    API for transaction. Allows HList to be used for setting up the transaction set

    client

    the transaction client

    returns

    response from server

  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def pipe[F[+_]](uri: URI)(implicit arg0: ContextShift[F], arg1: Concurrent[F], arg2: Log[F]): Resource[F, RedisClient[F, PIPE.type]]

    Make a connection for pipelines

    Make a connection for pipelines

    uri

    the client URI

    returns

    the pipeline client

  17. def pipeline[F[+_], A](client: RedisClient[F, PIPE.type])(f: (RedisClient[F, PIPE.type]) => F[A])(implicit arg0: Concurrent[F], arg1: ContextShift[F], arg2: Log[F]): F[Resp[Option[List[Any]]]]

    API for pipeline instructions

    API for pipeline instructions

    client

    the pipeline client

    f

    the pipeline of functions

    returns

    response from server

  18. def single[F[+_]](uris: NonEmptyList[URI])(implicit arg0: ContextShift[F], arg1: Concurrent[F], arg2: Log[F]): F[Resource[F, RedisClient[F, SINGLE.type]]]

    Creates a single connection out of the first working one from the list supplied.

    Creates a single connection out of the first working one from the list supplied. This is used to find out one of the seed connections in a Redis Cluster

    uris

    the list of uris from which at least one needs to work

    returns

    a resource for a working client in F

  19. def single[F[+_]](uri: URI)(implicit arg0: ContextShift[F], arg1: Concurrent[F], arg2: Log[F]): Resource[F, RedisClient[F, SINGLE.type]]

    Make a single normal connection

    Make a single normal connection

    uri

    the client URI

    returns

    the single client

  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. def transact[F[+_]](uri: URI)(implicit arg0: ContextShift[F], arg1: Concurrent[F], arg2: Log[F]): Resource[F, RedisClient[F, TRANSACT.type]]

    Make a connection for transaction

    Make a connection for transaction

    uri

    the client URI

    returns

    the transaction client

  23. def transaction[F[+_], A](client: RedisClient[F, TRANSACT.type])(f: (RedisClient[F, TRANSACT.type]) => F[A])(implicit arg0: Concurrent[F], arg1: ContextShift[F], arg2: Log[F]): F[Resp[Option[List[Any]]]]

    API for transaction.

    API for transaction. Allows HList to be used for setting up the transaction set

    client

    the transaction client

    f

    the pipeline of functions

    returns

    response from server

  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. case object ASC extends SortOrder with Product with Serializable
  28. case object DESC extends SortOrder with Product with Serializable
  29. case object MAX extends Aggregate with Product with Serializable
  30. case object MIN extends Aggregate with Product with Serializable
  31. case object PIPE extends Mode with Product with Serializable
  32. case object SINGLE extends Mode with Product with Serializable
  33. case object SUM extends Aggregate with Product with Serializable
  34. case object TRANSACT extends Mode with Product with Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped