Packages

package redis

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

Package Members

  1. package client
  2. package commands
  3. package domain

Deprecated Type Members

  1. trait RedisPubSub extends AnyRef

    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

    See also

    The reference Lettuce Api at: io.lettuce.core.api.reactive.BaseRedisReactiveCommands

  2. trait RedisStream extends AnyRef

    The Stream is a new data type introduced recently, wwhich models a log data structure in a more abstract way, like a log file often implemented as a file open in apend only mode, Redis streams are primarily an append only data structure.

    The Stream is a new data type introduced recently, wwhich models a log data structure in a more abstract way, like a log file often implemented as a file open in apend only mode, Redis streams are primarily an append only data structure. At least conceptually, because being Redis streams an abstract data type represented in memory, they implement more powerful opperations, to overcome the limits of the log file itself. Check the official documentation to see the available operations at: https://redis.io/commands#stream

    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

    See also

    The reference to lettuce api: io.lettuce.core.api.reactive.RedisStreamReactiveCommands

Value Members

  1. implicit val bigDecimalUtfCodec: UtfCodec[BigDecimal]
  2. implicit val bigIntUtfCodec: UtfCodec[BigInt]
  3. implicit val doubleUtfCodec: UtfCodec[Double]
  4. implicit val floatUtfCodec: UtfCodec[Float]
  5. implicit val intUtfCodec: UtfCodec[Int]

Deprecated Value Members

  1. object Redis extends RedisKey with RedisHash with RedisList with RedisPubSub with RedisSet with RedisSortedSet with RedisStream with RedisString with RedisServer

    An object that provides an aggregation of all the different Redis Apis.

    An object that provides an aggregation of all the different Redis Apis. They can be equally accessed independently or from this object.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

  2. object RedisHash extends RedisHash
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

  3. object RedisKey extends RedisKey
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

  4. object RedisList extends RedisList
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

  5. object RedisPubSub extends RedisPubSub
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

  6. object RedisServer extends RedisServer
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

  7. object RedisSet extends RedisSet
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

  8. object RedisSortedSet extends RedisSortedSet
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

  9. object RedisStream extends RedisStream

    Exposes only methods from the RedisStream api

    Exposes only methods from the RedisStream api

    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

  10. object RedisString extends RedisString
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) use the pure monix.connect.redis.client.RedisConnection

Inherited from AnyRef

Inherited from Any

Ungrouped