Class/Object

com.avsystem.commons.redis.RedisApi.Keyed

Async

Related Docs: object Async | package Keyed

Permalink

case class Async[S <: RedisSerialization](serialization: S, executor: RequiredExecutor, execConfig: ExecutionConfig) extends BaseAsync[S] with RedisRecoverableKeyedApi with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Async
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. RedisRecoverableKeyedApi
  7. RecoverableKeyedScriptingApi
  8. RedisKeyedApi
  9. StreamsApi
  10. HyperLogLogApi
  11. SetsApi
  12. ListsApi
  13. SortedSetsApi
  14. HashesApi
  15. KeyedScriptingApi
  16. GeoApi
  17. KeyedClusterApi
  18. StringsApi
  19. KeyedKeysApi
  20. BaseAsync
  21. RedisAsyncApi
  22. RedisExecutedApi
  23. RecoverableApiSubset
  24. AbstractRedisApi
  25. ApiSubset
  26. AnyRef
  27. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Async(serialization: S, executor: RequiredExecutor, execConfig: ExecutionConfig)

    Permalink

Type Members

  1. type Field = S.Field

    Permalink
    Definition Classes
    ApiSubset
  2. type Key = S.Key

    Permalink
    Definition Classes
    ApiSubset
  3. type Record = S.Record

    Permalink
    Definition Classes
    ApiSubset
  4. type Result[A] = scala.concurrent.Future[A]

    Permalink

    The type constructor into which a result of each command is wrapped.

    The type constructor into which a result of each command is wrapped. For example if Result is Future, then incr returns Future[Long].

    Definition Classes
    RedisAsyncApiApiSubset
  5. type Self[S0 <: RedisSerialization] = Async[S0]

    Permalink
    Definition Classes
    BaseAsyncAbstractRedisApi
  6. type Value = S.Value

    Permalink
    Definition Classes
    ApiSubset
  7. type WithField[F] = Self[S.WithField[F]]

    Permalink
    Definition Classes
    AbstractRedisApi
  8. type WithKey[K] = Self[S.WithKey[K]]

    Permalink
    Definition Classes
    AbstractRedisApi
  9. type WithRecord[R] = Self[S.WithRecord[R]]

    Permalink
    Definition Classes
    AbstractRedisApi
  10. type WithValue[V] = Self[S.WithValue[V]]

    Permalink
    Definition Classes
    AbstractRedisApi
  11. type XEntry = commands.XEntry[Record]

    Permalink
    Definition Classes
    StreamsApi

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object XEntry

    Permalink
    Definition Classes
    StreamsApi
  5. def append(key: Key, value: Value): Result[Int]

    Permalink

    Executes APPEND

    Executes APPEND

    Definition Classes
    StringsApi
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def bitcount(key: Key, range: commons.OptArg[(Int, Int)] = OptArg.Empty): Result[Long]

    Permalink

    Executes BITCOUNT

    Executes BITCOUNT

    Definition Classes
    StringsApi
  8. def bitfield(key: Key, ops: Iterable[BitFieldOp]): Result[Seq[commons.Opt[Long]]]

    Permalink

    Executes BITFIELD

    Executes BITFIELD

    Definition Classes
    StringsApi
  9. def bitfield(key: Key, op: BitFieldOp, ops: BitFieldOp*): Result[Seq[commons.Opt[Long]]]

    Permalink

    Executes BITFIELD

    Executes BITFIELD

    Definition Classes
    StringsApi
  10. def bitfield(key: Key, op: BitFieldOp): Result[commons.Opt[Long]]

    Permalink

    Executes BITFIELD

    Executes BITFIELD

    Definition Classes
    StringsApi
  11. def bitop(multiOperation: MultiBitOp, destkey: Key, keys: Key*): Result[Int]

    Permalink

    Executes BITOP

    Executes BITOP

    Definition Classes
    StringsApi
  12. def bitopNot(destkey: Key, key: Key): Result[Int]

    Permalink

    Executes BITOP

    Executes BITOP

    Definition Classes
    StringsApi
  13. def bitpos(key: Key, bit: Boolean, start: Int, end: Int): Result[Long]

    Permalink

    Executes BITPOS

    Executes BITPOS

    Definition Classes
    StringsApi
  14. def bitpos(key: Key, bit: Boolean, start: Int): Result[Long]

    Permalink

    Executes BITPOS

    Executes BITPOS

    Definition Classes
    StringsApi
  15. def bitpos(key: Key, bit: Boolean): Result[Long]

    Permalink

    Executes BITPOS

    Executes BITPOS

    Definition Classes
    StringsApi
  16. def blpop(keys: Iterable[Key], timeout: Int): Result[commons.Opt[(Key, Value)]]

    Permalink

    Executes BLPOP

    Executes BLPOP

    Definition Classes
    ListsApi
  17. def blpop(key: Key, timeout: Int): Result[commons.Opt[Value]]

    Permalink

    Executes BLPOP

    Executes BLPOP

    Definition Classes
    ListsApi
  18. def brpop(keys: Iterable[Key], timeout: Int): Result[commons.Opt[(Key, Value)]]

    Permalink

    Executes BRPOP

    Executes BRPOP

    Definition Classes
    ListsApi
  19. def brpop(key: Key, timeout: Int): Result[commons.Opt[Value]]

    Permalink

    Executes BRPOP

    Executes BRPOP

    Definition Classes
    ListsApi
  20. def brpoplpush(source: Key, destination: Key, timeout: Int): Result[commons.Opt[Value]]

    Permalink

    Executes BRPOPLPUSH

    Executes BRPOPLPUSH

    Definition Classes
    ListsApi
  21. def bzpopmax(keys: Iterable[Key], timeout: Int): Result[commons.Opt[(Key, Value, Double)]]

    Permalink

    Executes BZPOPMAX

    Executes BZPOPMAX

    Definition Classes
    SortedSetsApi
  22. def bzpopmax(key: Key, timeout: Int): Result[commons.Opt[(Value, Double)]]

    Permalink

    Executes BZPOPMAX

    Executes BZPOPMAX

    Definition Classes
    SortedSetsApi
  23. def bzpopmin(keys: Iterable[Key], timeout: Int): Result[commons.Opt[(Key, Value, Double)]]

    Permalink

    Executes BZPOPMIN

    Executes BZPOPMIN

    Definition Classes
    SortedSetsApi
  24. def bzpopmin(key: Key, timeout: Int): Result[commons.Opt[(Value, Double)]]

    Permalink

    Executes BZPOPMIN

    Executes BZPOPMIN

    Definition Classes
    SortedSetsApi
  25. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def clusterKeyslot(key: Key): Result[Int]

    Permalink

    Executes CLUSTER KEYSLOT

    Definition Classes
    KeyedClusterApi
  27. def decr(key: Key): Result[Long]

    Permalink

    Executes DECR

    Executes DECR

    Definition Classes
    StringsApi
  28. def decrby(key: Key, decrement: Long): Result[Long]

    Permalink

    Executes DECRBY

    Executes DECRBY

    Definition Classes
    StringsApi
  29. def del(keys: Iterable[Key]): Result[Int]

    Permalink

    Executes DEL or simply returns 0 if keys is empty, without sending the command to Redis

    Executes DEL or simply returns 0 if keys is empty, without sending the command to Redis

    Definition Classes
    KeyedKeysApi
  30. def del(key: Key, keys: Key*): Result[Int]

    Permalink

    Executes DEL

    Executes DEL

    Definition Classes
    KeyedKeysApi
  31. def del(key: Key): Result[Boolean]

    Permalink

    Executes DEL

    Executes DEL

    Definition Classes
    KeyedKeysApi
  32. def dump(key: Key): Result[commons.Opt[Dumped]]

    Permalink

    Executes DUMP

    Executes DUMP

    Definition Classes
    KeyedKeysApi
  33. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  34. def eval[T](source: String, keys: Seq[Key], args: Seq[Value])(decoder: ReplyDecoder[T]): Result[T]

    Permalink

    Executes EVAL

    Executes EVAL

    Definition Classes
    KeyedScriptingApi
  35. def eval[T](script: RedisScript[T], keys: Seq[Key], args: Seq[Value]): Result[T]

    Permalink

    Executes EVAL

    Executes EVAL

    Definition Classes
    KeyedScriptingApi
  36. def evalsha[T](sha1: Sha1, keys: Seq[Key], args: Seq[Value])(decoder: ReplyDecoder[T]): Result[T]

    Permalink

    Executes EVALSHA

    Executes EVALSHA

    Definition Classes
    KeyedScriptingApi
  37. def evalsha[T](script: RedisScript[T], keys: Seq[Key], args: Seq[Value]): Result[T]

    Permalink

    Executes EVALSHA

    Executes EVALSHA

    Definition Classes
    KeyedScriptingApi
  38. def evalshaOrEval[T](script: RedisScript[T], keys: Seq[Key], args: Seq[Value]): Result[T]

    Permalink

    Tries to execute EVALSHA and falls back to EVAL if script isn't loaded yet.

    Tries to execute EVALSHA and falls back to EVAL if script isn't loaded yet.

    Definition Classes
    RecoverableKeyedScriptingApi
  39. val execConfig: ExecutionConfig

    Permalink
    Definition Classes
    AsyncBaseAsyncRedisExecutedApi
  40. def execute[A](command: RedisCommand[A]): commons.Future[A]

    Permalink
    Definition Classes
    RedisAsyncApiApiSubset
  41. def executeAsync[A](command: RedisCommand[A]): commons.Future[A]

    Permalink
    Definition Classes
    RedisExecutedApi
  42. val executor: RequiredExecutor

    Permalink
    Definition Classes
    AsyncBaseAsyncRedisExecutedApi
  43. def exists(keys: Iterable[Key]): Result[Int]

    Permalink

    Executes EXISTS or simply returns 0 when keys is empty, without sending the command to Redis

    Executes EXISTS or simply returns 0 when keys is empty, without sending the command to Redis

    Definition Classes
    KeyedKeysApi
  44. def exists(key: Key, keys: Key*): Result[Int]

    Permalink

    Executes EXISTS

    Executes EXISTS

    Definition Classes
    KeyedKeysApi
  45. def exists(key: Key): Result[Boolean]

    Permalink

    Executes EXISTS

    Executes EXISTS

    Definition Classes
    KeyedKeysApi
  46. def expire(key: Key, seconds: Long): Result[Boolean]

    Permalink

    Executes EXPIRE

    Executes EXPIRE

    Definition Classes
    KeyedKeysApi
  47. def expireat(key: Key, timestamp: Long): Result[Boolean]

    Permalink

    Executes EXPIREAT

    Executes EXPIREAT

    Definition Classes
    KeyedKeysApi
  48. implicit final def fieldCodec: RedisDataCodec[Field]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  49. final def fieldType[F](implicit arg0: RedisDataCodec[F]): WithField[F]

    Permalink
    Definition Classes
    AbstractRedisApi
  50. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  51. def geoadd(key: Key, items: Iterable[(Value, GeoPoint)]): Result[Int]

    Permalink

    Executes GEOADD or simply returns 0 when items is empty, without sending the command Redis

    Executes GEOADD or simply returns 0 when items is empty, without sending the command Redis

    Definition Classes
    GeoApi
  52. def geoadd(key: Key, item: (Value, GeoPoint), items: (Value, GeoPoint)*): Result[Int]

    Permalink

    Executes GEOADD

    Executes GEOADD

    Definition Classes
    GeoApi
  53. def geoadd(key: Key, member: Value, point: GeoPoint): Result[Boolean]

    Permalink

    Executes GEOADD

    Executes GEOADD

    Definition Classes
    GeoApi
  54. def geodist(key: Key, member1: Value, member2: Value, unit: GeoUnit = GeoUnit.M): Result[commons.Opt[Double]]

    Permalink

    Executes GEODIST

    Executes GEODIST

    Definition Classes
    GeoApi
  55. def geohash(key: Key, members: Iterable[Value]): Result[Seq[commons.Opt[GeoHash]]]

    Permalink

    Executes GEOHASH NOTE: members CAN be empty (Redis accepts it)

    Executes GEOHASH NOTE: members CAN be empty (Redis accepts it)

    Definition Classes
    GeoApi
  56. def geohash(key: Key, members: Value*): Result[Seq[commons.Opt[GeoHash]]]

    Permalink

    Executes GEOHASH

    Executes GEOHASH

    Definition Classes
    GeoApi
  57. def geopos(key: Key, members: Iterable[Value]): Result[Seq[commons.Opt[GeoPoint]]]

    Permalink

    Executes GEOPOS NOTE: members CAN be empty (Redis accepts it)

    Executes GEOPOS NOTE: members CAN be empty (Redis accepts it)

    Definition Classes
    GeoApi
  58. def geopos(key: Key, members: Value*): Result[Seq[commons.Opt[GeoPoint]]]

    Permalink

    Executes GEOPOS

    Executes GEOPOS

    Definition Classes
    GeoApi
  59. def georadius[A <: GeoradiusAttrs](key: Key, point: GeoPoint, radius: Double, unit: GeoUnit, attributes: A = GeoradiusAttrs.None, count: commons.OptArg[Long] = OptArg.Empty, sortOrder: commons.OptArg[SortOrder] = OptArg.Empty, readOnly: Boolean = false): Result[Seq[commands.GeoApi.georadius.A.Attributed[Value]]]

    Permalink

    Executes GEORADIUS

    Executes GEORADIUS

    Definition Classes
    GeoApi
  60. def georadiusStore(key: Key, point: GeoPoint, radius: Double, unit: GeoUnit, storeKey: Key, storeDist: Boolean = false, count: commons.OptArg[Long] = OptArg.Empty, sortOrder: commons.OptArg[SortOrder] = OptArg.Empty): Result[commons.Opt[Long]]

    Permalink

    Executes GEORADIUS

    Executes GEORADIUS

    Definition Classes
    GeoApi
  61. def georadiusbymember[A <: GeoradiusAttrs](key: Key, member: Value, radius: Double, unit: GeoUnit, attributes: A = GeoradiusAttrs.None, count: commons.OptArg[Long] = OptArg.Empty, sortOrder: commons.OptArg[SortOrder] = OptArg.Empty, readOnly: Boolean = false): Result[Seq[commands.GeoApi.georadiusbymember.A.Attributed[Value]]]

    Permalink

    Executes GEORADIUSBYMEMBER

    Definition Classes
    GeoApi
  62. def georadiusbymemberStore(key: Key, member: Value, radius: Double, unit: GeoUnit, storeKey: Key, storeDist: Boolean = false, count: commons.OptArg[Long] = OptArg.Empty, sortOrder: commons.OptArg[SortOrder] = OptArg.Empty): Result[commons.Opt[Long]]

    Permalink

    Executes GEORADIUSBYMEMBER

    Definition Classes
    GeoApi
  63. def get(key: Key): Result[commons.Opt[Value]]

    Permalink

    Executes GET

    Executes GET

    Definition Classes
    StringsApi
  64. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  65. def getbit(key: Key, offset: Int): Result[Boolean]

    Permalink

    Executes GETBIT

    Executes GETBIT

    Definition Classes
    StringsApi
  66. def getrange(key: Key, start: Int = 0, end: Int = 1): Result[Value]

    Permalink

    Executes GETRANGE

    Executes GETRANGE

    Definition Classes
    StringsApi
  67. def getset(key: Key, value: Value): Result[commons.Opt[Value]]

    Permalink

    Executes GETSET

    Executes GETSET

    Definition Classes
    StringsApi
  68. def hdel(key: Key, fields: Iterable[Field]): Result[Int]

    Permalink

    Executes HDEL or simply returns 0 when fields is empty, without sending the command to Redis

    Executes HDEL or simply returns 0 when fields is empty, without sending the command to Redis

    Definition Classes
    HashesApi
  69. def hdel(key: Key, field: Field, fields: Field*): Result[Int]

    Permalink

    Executes HDEL

    Executes HDEL

    Definition Classes
    HashesApi
  70. def hdel(key: Key, field: Field): Result[Boolean]

    Permalink

    Executes HDEL

    Executes HDEL

    Definition Classes
    HashesApi
  71. implicit def headOps[T](head: T): HeadOps[T]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  72. def hexists(key: Key, field: Field): Result[Boolean]

    Permalink

    Executes HEXISTS

    Executes HEXISTS

    Definition Classes
    HashesApi
  73. def hget(key: Key, field: Field): Result[commons.Opt[Value]]

    Permalink

    Executes HGET

    Executes HGET

    Definition Classes
    HashesApi
  74. def hgetall(key: Key): Result[commons.BMap[Field, Value]]

    Permalink

    Executes HGETALL

    Executes HGETALL

    Definition Classes
    HashesApi
  75. def hgetallRecord(key: Key): Result[commons.Opt[Record]]

    Permalink

    Executes HGETALL

    Executes HGETALL

    Definition Classes
    HashesApi
  76. def hincrby(key: Key, field: Field, increment: Long): Result[Long]

    Permalink

    Executes HINCRBY

    Executes HINCRBY

    Definition Classes
    HashesApi
  77. def hincrbyfloat(key: Key, field: Field, increment: Double): Result[Double]

    Permalink

    Executes HINCRBYFLOAT

    Executes HINCRBYFLOAT

    Definition Classes
    HashesApi
  78. def hkeys(key: Key): Result[commons.BSet[Field]]

    Permalink

    Executes HKEYS

    Executes HKEYS

    Definition Classes
    HashesApi
  79. def hlen(key: Key): Result[Long]

    Permalink

    Executes HLEN

    Executes HLEN

    Definition Classes
    HashesApi
  80. def hmget(key: Key, fields: Iterable[Field]): Result[Seq[commons.Opt[Value]]]

    Permalink

    Executes HMGET or simply returns empty Seq when fields is empty, without sending the command to Redis

    Executes HMGET or simply returns empty Seq when fields is empty, without sending the command to Redis

    Definition Classes
    HashesApi
  81. def hmget(key: Key, field: Field, fields: Field*): Result[Seq[commons.Opt[Value]]]

    Permalink

    Executes HMGET

    Executes HMGET

    Definition Classes
    HashesApi
  82. def hmset(key: Key, fieldValues: Iterable[(Field, Value)]): Result[Unit]

    Permalink

    Executes HMSET or does nothing when fieldValues is empty, without sending the command to Redis

    Executes HMSET or does nothing when fieldValues is empty, without sending the command to Redis

    Definition Classes
    HashesApi
  83. def hmset(key: Key, fieldValue: (Field, Value), fieldValues: (Field, Value)*): Result[Unit]

    Permalink

    Executes HMSET

    Executes HMSET

    Definition Classes
    HashesApi
  84. def hmsetRecord(key: Key, data: Record): Result[Unit]

    Permalink

    Executes HMSET or does nothing when data is empty, without sending the command to Redis

    Executes HMSET or does nothing when data is empty, without sending the command to Redis

    Definition Classes
    HashesApi
  85. def hscan(key: Key, cursor: Cursor, matchPattern: commons.OptArg[Field] = OptArg.Empty, count: commons.OptArg[Int] = OptArg.Empty): Result[(Cursor, Seq[(Field, Value)])]

    Permalink

    Executes HSCAN

    Executes HSCAN

    Definition Classes
    HashesApi
  86. def hset(key: Key, fieldValues: Iterable[(Field, Value)]): Result[Int]

    Permalink

    Executes HSET or does nothing when fieldValues is empty, without sending the command to Redis

    Executes HSET or does nothing when fieldValues is empty, without sending the command to Redis

    Definition Classes
    HashesApi
  87. def hset(key: Key, fieldValue: (Field, Value), fieldValues: (Field, Value)*): Result[Int]

    Permalink

    Executes HSET

    Executes HSET

    Definition Classes
    HashesApi
  88. def hset(key: Key, field: Field, value: Value): Result[Boolean]

    Permalink

    Executes HSET

    Executes HSET

    Definition Classes
    HashesApi
  89. def hsetRecord(key: Key, data: Record): Result[Int]

    Permalink

    Executes HSET or does nothing when data is empty, without sending the command to Redis

    Executes HSET or does nothing when data is empty, without sending the command to Redis

    Definition Classes
    HashesApi
  90. def hsetnx(key: Key, field: Field, value: Value): Result[Boolean]

    Permalink

    Executes HSETNX

    Executes HSETNX

    Definition Classes
    HashesApi
  91. def hstrlen(key: Key, field: Field): Result[Int]

    Permalink

    Executes HSTRLEN

    Executes HSTRLEN

    Definition Classes
    HashesApi
  92. def hvals(key: Key): Result[Iterable[Value]]

    Permalink

    Executes HVALS

    Executes HVALS

    Definition Classes
    HashesApi
  93. def incr(key: Key): Result[Long]

    Permalink

    Executes INCR

    Executes INCR

    Definition Classes
    StringsApi
  94. def incrby(key: Key, increment: Long): Result[Long]

    Permalink

    Executes INCRBY

    Executes INCRBY

    Definition Classes
    StringsApi
  95. def incrbyfloat(key: Key, increment: Double): Result[Double]

    Permalink

    Executes INCRBYFLOAT

    Executes INCRBYFLOAT

    Definition Classes
    StringsApi
  96. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  97. implicit def iterableTailOps[T](tail: Iterable[T]): IterableTailOps[T]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  98. implicit def iteratorTailOps[T](tail: Iterator[T]): IteratorTailOps[T]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  99. implicit final def keyCodec: RedisDataCodec[Key]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  100. def keySlot(key: Key): Int

    Permalink
    Definition Classes
    KeyedClusterApi
  101. final def keyType[K](implicit arg0: RedisDataCodec[K]): WithKey[K]

    Permalink
    Definition Classes
    AbstractRedisApi
  102. def lindex(key: Key, index: Long): Result[commons.Opt[Value]]

    Permalink

    Executes LINDEX

    Executes LINDEX

    Definition Classes
    ListsApi
  103. def linsert(key: Key, pivot: Value, value: Value, before: Boolean = false): Result[commons.Opt[Long]]

    Permalink

    Executes LINSERT

    Executes LINSERT

    Definition Classes
    ListsApi
  104. def llen(key: Key): Result[Long]

    Permalink

    Executes LLEN

    Executes LLEN

    Definition Classes
    ListsApi
  105. def lpop(key: Key): Result[commons.Opt[Value]]

    Permalink

    Executes LPOP

    Executes LPOP

    Definition Classes
    ListsApi
  106. def lpush(key: Key, values: Iterable[Value]): Result[Long]

    Permalink

    Executes LPUSH NOTE: values MUST NOT be empty - consider using lpushOrLlen in such case.

    Executes LPUSH NOTE: values MUST NOT be empty - consider using lpushOrLlen in such case.

    Definition Classes
    ListsApi
  107. def lpush(key: Key, value: Value, values: Value*): Result[Long]

    Permalink

    Executes LPUSH

    Executes LPUSH

    Definition Classes
    ListsApi
  108. def lpushOrLlen(key: Key, values: Iterable[Value]): Result[Long]

    Permalink

    Executes LPUSH or LLEN when values is empty

    Executes LPUSH or LLEN when values is empty

    Definition Classes
    ListsApi
  109. def lpushx(key: Key, values: Iterable[Value]): Result[Long]

    Permalink

    Executes LPUSHX

    Executes LPUSHX

    Definition Classes
    ListsApi
  110. def lpushx(key: Key, value: Value, values: Value*): Result[Long]

    Permalink

    Executes LPUSHX

    Executes LPUSHX

    Definition Classes
    ListsApi
  111. def lpushxOrLlen(key: Key, values: Iterable[Value]): Result[Long]

    Permalink

    Executes LPUSHX or LLEN when values is empty

    Executes LPUSHX or LLEN when values is empty

    Definition Classes
    ListsApi
  112. def lrange(key: Key, start: Long = 0, stop: Long = 1): Result[Seq[Value]]

    Permalink

    Executes LRANGE

    Executes LRANGE

    Definition Classes
    ListsApi
  113. def lrem(key: Key, value: Value, count: RemCount = RemCount.All): Result[Long]

    Permalink

    Executes LREM

    Executes LREM

    Definition Classes
    ListsApi
  114. def lset(key: Key, index: Long, value: Value): Result[Unit]

    Permalink

    Executes LSET

    Executes LSET

    Definition Classes
    ListsApi
  115. def ltrim(key: Key, start: Long = 0, stop: Long = 1): Result[Unit]

    Permalink

    Executes LTRIM

    Executes LTRIM

    Definition Classes
    ListsApi
  116. def memoryUsage(key: Key, samples: commons.OptArg[Long] = OptArg.Empty): Result[commons.Opt[Long]]

    Permalink
    Definition Classes
    KeyedKeysApi
  117. def mget(keys: Iterable[Key]): Result[Seq[commons.Opt[Value]]]

    Permalink

    Executes MGET or simply returns empty Seq when keys is empty, without sending the command to Redis

    Executes MGET or simply returns empty Seq when keys is empty, without sending the command to Redis

    Definition Classes
    StringsApi
  118. def mget(key: Key, keys: Key*): Result[Seq[commons.Opt[Value]]]

    Permalink

    Executes MGET

    Executes MGET

    Definition Classes
    StringsApi
  119. def migrate(keys: Iterable[Key], address: NodeAddress, destinationDb: Int, timeout: Long, copy: Boolean = false, replace: Boolean = false): Result[Boolean]

    Permalink

    Executes MIGRATE or simply returns true when keys is empty, without sending the command to Redis

    Executes MIGRATE or simply returns true when keys is empty, without sending the command to Redis

    Definition Classes
    KeyedKeysApi
  120. def mset(keyValues: Iterable[(Key, Value)]): Result[Unit]

    Permalink

    Executes MSET or does nothing when keyValues is empty, without sending the command to Redis

    Executes MSET or does nothing when keyValues is empty, without sending the command to Redis

    Definition Classes
    StringsApi
  121. def mset(keyValue: (Key, Value), keyValues: (Key, Value)*): Result[Unit]

    Permalink

    Executes MSET

    Executes MSET

    Definition Classes
    StringsApi
  122. def msetnx(keyValues: Iterable[(Key, Value)]): Result[Boolean]

    Permalink

    Executes MSETNX or simply returns true when keyValues is empty, without sending the command to Redis

    Executes MSETNX or simply returns true when keyValues is empty, without sending the command to Redis

    Definition Classes
    StringsApi
  123. def msetnx(keyValue: (Key, Value), keyValues: (Key, Value)*): Result[Boolean]

    Permalink

    Executes MSETNX

    Executes MSETNX

    Definition Classes
    StringsApi
  124. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  125. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  126. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  127. def objectEncoding(key: Key): Result[commons.Opt[Encoding]]

    Permalink

    Executes OBJECT

    Executes OBJECT

    Definition Classes
    KeyedKeysApi
  128. def objectIdletime(key: Key): Result[commons.Opt[Long]]

    Permalink

    Executes OBJECT

    Executes OBJECT

    Definition Classes
    KeyedKeysApi
  129. def objectRefcount(key: Key): Result[commons.Opt[Long]]

    Permalink

    Executes OBJECT

    Executes OBJECT

    Definition Classes
    KeyedKeysApi
  130. def persist(key: Key): Result[Boolean]

    Permalink

    Executes PERSIST

    Executes PERSIST

    Definition Classes
    KeyedKeysApi
  131. def pexpire(key: Key, milliseconds: Long): Result[Boolean]

    Permalink

    Executes PEXPIRE

    Executes PEXPIRE

    Definition Classes
    KeyedKeysApi
  132. def pexpireat(key: Key, millisecondsTimestamp: Long): Result[Boolean]

    Permalink

    Executes PEXPIREAT

    Executes PEXPIREAT

    Definition Classes
    KeyedKeysApi
  133. def pfadd(key: Key, elements: Iterable[Value]): Result[Boolean]

    Permalink

    Executes PFADD NOTE: elements CAN be empty, Redis accepts it

    Executes PFADD NOTE: elements CAN be empty, Redis accepts it

    Definition Classes
    HyperLogLogApi
  134. def pfadd(key: Key, elements: Value*): Result[Boolean]

    Permalink

    Executes PFADD

    Executes PFADD

    Definition Classes
    HyperLogLogApi
  135. def pfcount(keys: Iterable[Key]): Result[Long]

    Permalink

    Executes PFCOUNT or simply returns 0 when keys is empty, without sending the command to Redis

    Executes PFCOUNT or simply returns 0 when keys is empty, without sending the command to Redis

    Definition Classes
    HyperLogLogApi
  136. def pfcount(key: Key, keys: Key*): Result[Long]

    Permalink

    Executes PFCOUNT

    Executes PFCOUNT

    Definition Classes
    HyperLogLogApi
  137. def pfmerge(destkey: Key, sourcekeys: Iterable[Key]): Result[Unit]

    Permalink

    Executes PFMERGE.

    Executes PFMERGE. NOTE: sourcekeys CAN be empty, Redis accepts it

    Definition Classes
    HyperLogLogApi
  138. def pfmerge(destkey: Key, sourcekeys: Key*): Result[Unit]

    Permalink

    Executes PFMERGE

    Executes PFMERGE

    Definition Classes
    HyperLogLogApi
  139. def psetex(key: Key, milliseconds: Long, value: Value): Result[Unit]

    Permalink

    Executes PSETEX

    Executes PSETEX

    Definition Classes
    StringsApi
  140. def pttl(key: Key): Result[commons.Opt[commons.Opt[Long]]]

    Permalink

    Executes PTTL

    Executes PTTL

    Definition Classes
    KeyedKeysApi
  141. implicit final def recordCodec: RedisRecordCodec[Record]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  142. final def recordType[R](implicit arg0: RedisRecordCodec[R]): WithRecord[R]

    Permalink
    Definition Classes
    AbstractRedisApi
  143. def recoverWith[A](executed: ⇒ commons.Future[A])(fun: PartialFunction[Throwable, commons.Future[A]]): commons.Future[A]

    Permalink
    Definition Classes
    RedisAsyncApiRecoverableApiSubset
  144. def rename(key: Key, newkey: Key): Result[Unit]

    Permalink

    Executes RENAME

    Executes RENAME

    Definition Classes
    KeyedKeysApi
  145. def renamenx(key: Key, newkey: Key): Result[Boolean]

    Permalink

    Executes RENAMENX

    Executes RENAMENX

    Definition Classes
    KeyedKeysApi
  146. def restore(key: Key, ttl: Long, dumpedValue: Dumped, replace: Boolean = false): Result[Unit]

    Permalink

    Executes RESTORE

    Executes RESTORE

    Definition Classes
    KeyedKeysApi
  147. def rpop(key: Key): Result[commons.Opt[Value]]

    Permalink

    Executes RPOP

    Executes RPOP

    Definition Classes
    ListsApi
  148. def rpoplpush(source: Key, destination: Key): Result[commons.Opt[Value]]

    Permalink

    Executes RPOPLPUSH

    Executes RPOPLPUSH

    Definition Classes
    ListsApi
  149. def rpush(key: Key, values: Iterable[Value]): Result[Long]

    Permalink

    Executes RPUSH NOTE: values MUST NOT be empty - consider using rpushOrLlen in such case.

    Executes RPUSH NOTE: values MUST NOT be empty - consider using rpushOrLlen in such case.

    Definition Classes
    ListsApi
  150. def rpush(key: Key, value: Value, values: Value*): Result[Long]

    Permalink

    Executes RPUSH

    Executes RPUSH

    Definition Classes
    ListsApi
  151. def rpushOrLlen(key: Key, values: Iterable[Value]): Result[Long]

    Permalink

    Executes RPUSH or LLEN when values is empty

    Executes RPUSH or LLEN when values is empty

    Definition Classes
    ListsApi
  152. def rpushx(key: Key, values: Iterable[Value]): Result[Long]

    Permalink

    Executes RPUSHX

    Executes RPUSHX

    Definition Classes
    ListsApi
  153. def rpushx(key: Key, value: Value, values: Value*): Result[Long]

    Permalink

    Executes RPUSHX

    Executes RPUSHX

    Definition Classes
    ListsApi
  154. def rpushxOrLlen(key: Key, values: Iterable[Value]): Result[Long]

    Permalink

    Executes RPUSHX or LLEN when values is empty

    Executes RPUSHX or LLEN when values is empty

    Definition Classes
    ListsApi
  155. def sadd(key: Key, members: Iterable[Value]): Result[Int]

    Permalink

    Executes SADD or simply returns 0 when members is empty

    Executes SADD or simply returns 0 when members is empty

    Definition Classes
    SetsApi
  156. def sadd(key: Key, member: Value, members: Value*): Result[Int]

    Permalink

    Executes SADD

    Executes SADD

    Definition Classes
    SetsApi
  157. def sadd(key: Key, member: Value): Result[Boolean]

    Permalink

    Executes SADD

    Executes SADD

    Definition Classes
    SetsApi
  158. def scard(key: Key): Result[Long]

    Permalink

    Executes SCARD

    Executes SCARD

    Definition Classes
    SetsApi
  159. def sdiff(source: Key, keys: Iterable[Key]): Result[commons.BSet[Value]]

    Permalink

    Executes SDIFF

    Executes SDIFF

    Definition Classes
    SetsApi
  160. def sdiff(source: Key, keys: Key*): Result[commons.BSet[Value]]

    Permalink

    Executes SDIFF

    Executes SDIFF

    Definition Classes
    SetsApi
  161. def sdiffstore(destination: Key, source: Key, keys: Iterable[Key]): Result[Long]

    Permalink

    Executes SDIFFSTORE

    Executes SDIFFSTORE

    Definition Classes
    SetsApi
  162. def sdiffstore(destination: Key, source: Key, keys: Key*): Result[Long]

    Permalink

    Executes SDIFFSTORE

    Executes SDIFFSTORE

    Definition Classes
    SetsApi
  163. val serialization: S

    Permalink
    Definition Classes
    AsyncApiSubset
  164. def set(key: Key, value: Value, expiration: commons.OptArg[Expiration] = OptArg.Empty, existence: commons.OptArg[Boolean] = OptArg.Empty): Result[Boolean]

    Permalink

    Executes SET

    Executes SET

    Definition Classes
    StringsApi
  165. def setbit(key: Key, offset: Long, value: Boolean): Result[Boolean]

    Permalink

    Executes SETBIT

    Executes SETBIT

    Definition Classes
    StringsApi
  166. def setex(key: Key, seconds: Long, value: Value): Result[Unit]

    Permalink

    Executes SETEX

    Executes SETEX

    Definition Classes
    StringsApi
  167. def setnx(key: Key, value: Value): Result[Boolean]

    Permalink

    Executes SETNX

    Executes SETNX

    Definition Classes
    StringsApi
  168. def setrange(key: Key, offset: Int, value: Value): Result[Int]

    Permalink

    Executes SETRANGE

    Executes SETRANGE

    Definition Classes
    StringsApi
  169. def sinter(keys: Iterable[Key]): Result[commons.BSet[Value]]

    Permalink

    Executes SINTER NOTE: keys MUST NOT be empty

    Executes SINTER NOTE: keys MUST NOT be empty

    Definition Classes
    SetsApi
  170. def sinter(key: Key, keys: Key*): Result[commons.BSet[Value]]

    Permalink

    Executes SINTER

    Executes SINTER

    Definition Classes
    SetsApi
  171. def sinterstore(destination: Key, keys: Iterable[Key]): Result[Long]

    Permalink

    Executes SINTERSTORE NOTE: keys MUST NOT be empty

    Executes SINTERSTORE NOTE: keys MUST NOT be empty

    Definition Classes
    SetsApi
  172. def sinterstore(destination: Key, key: Key, keys: Key*): Result[Long]

    Permalink

    Executes SINTERSTORE

    Executes SINTERSTORE

    Definition Classes
    SetsApi
  173. def sismember(key: Key, member: Value): Result[Boolean]

    Permalink

    Executes SISMEMBER

    Executes SISMEMBER

    Definition Classes
    SetsApi
  174. def smembers(key: Key): Result[commons.BSet[Value]]

    Permalink

    Executes SMEMBERS

    Executes SMEMBERS

    Definition Classes
    SetsApi
  175. def smove(source: Key, destination: Key, member: Value): Result[Boolean]

    Permalink

    Executes SMOVE

    Executes SMOVE

    Definition Classes
    SetsApi
  176. def sort(key: Key, by: commons.OptArg[SortPattern[Key, Field]] = OptArg.Empty, limit: commons.OptArg[SortLimit] = OptArg.Empty, sortOrder: commons.OptArg[SortOrder] = OptArg.Empty, alpha: Boolean = false): Result[Seq[Value]]

    Permalink

    Executes SORT

    Executes SORT

    Definition Classes
    KeyedKeysApi
  177. def sortGet(key: Key, gets: Seq[SortPattern[Key, Field]], by: commons.OptArg[SortPattern[Key, Field]] = OptArg.Empty, limit: commons.OptArg[SortLimit] = OptArg.Empty, sortOrder: commons.OptArg[SortOrder] = OptArg.Empty, alpha: Boolean = false): Result[Seq[Seq[commons.Opt[Value]]]]

    Permalink

    Executes SORT

    Executes SORT

    Definition Classes
    KeyedKeysApi
  178. def sortStore(key: Key, destination: Key, by: commons.OptArg[SortPattern[Key, Field]] = OptArg.Empty, limit: commons.OptArg[SortLimit] = OptArg.Empty, gets: Seq[SortPattern[Key, Field]] = Nil, sortOrder: commons.OptArg[SortOrder] = OptArg.Empty, alpha: Boolean = false): Result[Long]

    Permalink

    Executes SORT

    Executes SORT

    Definition Classes
    KeyedKeysApi
  179. def spop(key: Key, count: Int): Result[commons.BSet[Value]]

    Permalink

    Executes SPOP

    Executes SPOP

    Definition Classes
    SetsApi
  180. def spop(key: Key): Result[commons.Opt[Value]]

    Permalink

    Executes SPOP

    Executes SPOP

    Definition Classes
    SetsApi
  181. def srandmember(key: Key, count: Int): Result[Seq[Value]]

    Permalink

    Executes SRANDMEMBER

    Executes SRANDMEMBER

    Definition Classes
    SetsApi
  182. def srandmember(key: Key): Result[commons.Opt[Value]]

    Permalink

    Executes SRANDMEMBER

    Executes SRANDMEMBER

    Definition Classes
    SetsApi
  183. def srandmemberDistinct(key: Key, count: Int): Result[commons.BSet[Value]]

    Permalink

    Executes SRANDMEMBER

    Executes SRANDMEMBER

    Definition Classes
    SetsApi
  184. def srem(key: Key, members: Iterable[Value]): Result[Int]

    Permalink

    Executes SREM or simply returns 0 when members is empty

    Executes SREM or simply returns 0 when members is empty

    Definition Classes
    SetsApi
  185. def srem(key: Key, member: Value, members: Value*): Result[Int]

    Permalink

    Executes SREM

    Executes SREM

    Definition Classes
    SetsApi
  186. def srem(key: Key, member: Value): Result[Boolean]

    Permalink

    Executes SREM

    Executes SREM

    Definition Classes
    SetsApi
  187. def sscan(key: Key, cursor: Cursor, matchPattern: commons.OptArg[Value] = OptArg.Empty, count: commons.OptArg[Int] = OptArg.Empty): Result[(Cursor, Seq[Value])]

    Permalink

    Executes SSCAN

    Executes SSCAN

    Definition Classes
    SetsApi
  188. def strlen(key: Key): Result[Int]

    Permalink

    Executes STRLEN

    Executes STRLEN

    Definition Classes
    StringsApi
  189. def sunion(keys: Iterable[Key]): Result[commons.BSet[Value]]

    Permalink

    Executes SUNION or simply returns empty set when keys is empty

    Executes SUNION or simply returns empty set when keys is empty

    Definition Classes
    SetsApi
  190. def sunion(key: Key, keys: Key*): Result[commons.BSet[Value]]

    Permalink

    Executes SUNION

    Executes SUNION

    Definition Classes
    SetsApi
  191. def sunionstore(destination: Key, keys: Iterable[Key]): Result[Long]

    Permalink

    Executes SUNIONSTORE NOTE: unlike in SUNION keys MUST NOT be empty because SUNIONSTORE overwrites destination key.

    Executes SUNIONSTORE NOTE: unlike in SUNION keys MUST NOT be empty because SUNIONSTORE overwrites destination key. An operation equivalent to invoking SUNIONSTORE with only destination and no keys would be DEL destination

    Definition Classes
    SetsApi
  192. def sunionstore(destination: Key, key: Key, keys: Key*): Result[Long]

    Permalink

    Executes SUNIONSTORE

    Executes SUNIONSTORE

    Definition Classes
    SetsApi
  193. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  194. def touch(keys: Iterable[Key]): Result[Int]

    Permalink

    Executes TOUCH or simply returns 0 when keys is empty, without sending the command to Redis

    Executes TOUCH or simply returns 0 when keys is empty, without sending the command to Redis

    Definition Classes
    KeyedKeysApi
  195. def touch(key: Key, keys: Key*): Result[Int]

    Permalink

    Executes TOUCH

    Executes TOUCH

    Definition Classes
    KeyedKeysApi
  196. def touch(key: Key): Result[Boolean]

    Permalink

    Executes TOUCH

    Executes TOUCH

    Definition Classes
    KeyedKeysApi
  197. def ttl(key: Key): Result[commons.Opt[commons.Opt[Long]]]

    Permalink

    Executes TTL

    Executes TTL

    Definition Classes
    KeyedKeysApi
  198. def type(key: Key): Result[RedisType]

    Permalink

    Executes TYPE

    Executes TYPE

    Definition Classes
    KeyedKeysApi
  199. def unlink(keys: Iterable[Key]): Result[Int]

    Permalink

    Executes UNLINK or simply returns 0 when keys is empty, without sending the command to Redis

    Executes UNLINK or simply returns 0 when keys is empty, without sending the command to Redis

    Definition Classes
    KeyedKeysApi
  200. def unlink(key: Key, keys: Key*): Result[Int]

    Permalink

    Executes UNLINK

    Executes UNLINK

    Definition Classes
    KeyedKeysApi
  201. def unlink(key: Key): Result[Boolean]

    Permalink

    Executes UNLINK

    Executes UNLINK

    Definition Classes
    KeyedKeysApi
  202. implicit final def valueCodec: RedisDataCodec[Value]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  203. final def valueType[V](implicit arg0: RedisDataCodec[V]): WithValue[V]

    Permalink
    Definition Classes
    AbstractRedisApi
  204. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  205. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  206. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  207. def withSerialization[S0 <: RedisSerialization](ser: S0): Self[S0]

    Permalink
    Definition Classes
    BaseAsyncAbstractRedisApi
  208. def xack(key: Key, group: XGroup, ids: Iterable[XEntryId]): Result[Int]

    Permalink

    Executes XACK

    Executes XACK

    Definition Classes
    StreamsApi
  209. def xack(key: Key, group: XGroup, id: XEntryId, ids: XEntryId*): Result[Int]

    Permalink

    Executes XACK

    Executes XACK

    Definition Classes
    StreamsApi
  210. def xack(key: Key, group: XGroup, id: XEntryId): Result[Boolean]

    Permalink

    Executes XACK

    Executes XACK

    Definition Classes
    StreamsApi
  211. def xadd(key: Key, data: Record, id: commons.OptArg[XEntryId] = OptArg.Empty, maxlen: commons.OptArg[XMaxlen] = OptArg.Empty): Result[XEntryId]

    Permalink

    Executes XADD

    Executes XADD

    Definition Classes
    StreamsApi
  212. def xaddEntry(key: Key, entry: XEntry, maxlen: commons.OptArg[XMaxlen] = OptArg.Empty): Result[XEntryId]

    Permalink

    Executes XADD

    Executes XADD

    Definition Classes
    StreamsApi
  213. def xclaim(key: Key, group: XGroup, consumer: XConsumer, minIdleMillis: Long, ids: Iterable[XEntryId], idleMillis: commons.OptArg[Long] = OptArg.Empty, msUnixTime: commons.OptArg[Long] = OptArg.Empty, retrycount: commons.OptArg[Int] = OptArg.Empty, force: Boolean = false): Result[Seq[XEntry]]

    Permalink

    Executes XCLAIM

    Executes XCLAIM

    Definition Classes
    StreamsApi
  214. def xclaimJustid(key: Key, group: XGroup, consumer: XConsumer, minIdleMillis: Long, ids: Iterable[XEntryId], idleMillis: commons.OptArg[Long] = OptArg.Empty, msUnixTime: commons.OptArg[Long] = OptArg.Empty, retrycount: commons.OptArg[Int] = OptArg.Empty, force: Boolean = false): Result[Seq[XEntryId]]

    Permalink

    Executes XCLAIM

    Executes XCLAIM

    Definition Classes
    StreamsApi
  215. def xclaimSingle(key: Key, group: XGroup, consumer: XConsumer, minIdleMillis: Long, id: XEntryId, idleMillis: commons.OptArg[Long] = OptArg.Empty, msUnixTime: commons.OptArg[Long] = OptArg.Empty, retrycount: commons.OptArg[Int] = OptArg.Empty, force: Boolean = false): Result[commons.Opt[XEntry]]

    Permalink

    Executes XCLAIM

    Executes XCLAIM

    Definition Classes
    StreamsApi
  216. def xdel(key: Key, ids: Iterable[XEntryId]): Result[Long]

    Permalink

    Executes XDEL

    Executes XDEL

    Definition Classes
    StreamsApi
  217. def xdel(key: Key, id: XEntryId, ids: XEntryId*): Result[Long]

    Permalink

    Executes XDEL

    Executes XDEL

    Definition Classes
    StreamsApi
  218. def xdel(key: Key, id: XEntryId): Result[Boolean]

    Permalink

    Executes XDEL

    Executes XDEL

    Definition Classes
    StreamsApi
  219. def xgroupCreate(key: Key, group: XGroup, id: commons.OptArg[XEntryId] = OptArg.Empty, mkstream: Boolean = false): Result[Unit]

    Permalink

    Executes XGROUP CREATE

    Executes XGROUP CREATE

    Definition Classes
    StreamsApi
  220. def xgroupDelconsumer(key: Key, group: XGroup, consumer: XConsumer): Result[Boolean]

    Permalink

    Executes XGROUP DELCONSUMER

    Definition Classes
    StreamsApi
  221. def xgroupDestroy(key: Key, group: XGroup): Result[Boolean]

    Permalink

    Executes XGROUP DESTROY

    Definition Classes
    StreamsApi
  222. def xgroupSetid(key: Key, group: XGroup, id: commons.OptArg[XEntryId] = OptArg.Empty): Result[Unit]

    Permalink

    Executes XGROUP SETID

    Executes XGROUP SETID

    Definition Classes
    StreamsApi
  223. def xinfoConsumers(key: Key, group: XGroup): Result[Seq[XConsumerInfo]]

    Permalink

    Executes XINFO CONSUMERS

    Definition Classes
    StreamsApi
  224. def xinfoGroups(key: Key): Result[Seq[XGroupInfo]]

    Permalink

    Executes XINFO GROUPS

    Executes XINFO GROUPS

    Definition Classes
    StreamsApi
  225. def xinfoStream(key: Key): Result[XStreamInfo[Record]]

    Permalink

    Executes XINFO STREAM

    Executes XINFO STREAM

    Definition Classes
    StreamsApi
  226. def xlen(key: Key): Result[Long]

    Permalink

    Executes XLEN

    Executes XLEN

    Definition Classes
    StreamsApi
  227. def xpending(key: Key, group: XGroup): Result[XPendingOverview]

    Permalink

    Executes XPENDING

    Executes XPENDING

    Definition Classes
    StreamsApi
  228. def xpendingEntries(key: Key, group: XGroup, count: Int, start: commons.OptArg[XEntryId] = OptArg.Empty, end: commons.OptArg[XEntryId] = OptArg.Empty, consumer: commons.OptArg[XConsumer] = OptArg.Empty): Result[Seq[XPendingEntry]]

    Permalink

    Executes XPENDING

    Executes XPENDING

    Definition Classes
    StreamsApi
  229. def xrange(key: Key, start: commons.OptArg[XEntryId] = OptArg.Empty, end: commons.OptArg[XEntryId] = OptArg.Empty, count: commons.OptArg[Int] = OptArg.Empty): Result[Seq[XEntry]]

    Permalink

    Executes XRANGE

    Executes XRANGE

    Definition Classes
    StreamsApi
  230. def xread(streams: Iterable[(Key, commons.Opt[XEntryId])], blockMillis: commons.OptArg[Int] = OptArg.Empty, count: commons.OptArg[Int] = OptArg.Empty): Result[commons.BMap[Key, Seq[XEntry]]]

    Permalink

    Executes XREAD

    Executes XREAD

    Definition Classes
    StreamsApi
  231. def xreadSingle(key: Key, id: commons.Opt[XEntryId], blockMillis: commons.OptArg[Int] = OptArg.Empty, count: commons.OptArg[Int] = OptArg.Empty): Result[Seq[XEntry]]

    Permalink

    Executes XREAD

    Executes XREAD

    Definition Classes
    StreamsApi
  232. def xreadgroup(group: XGroup, consumer: XConsumer, streams: Iterable[(Key, commons.Opt[XEntryId])], blockMillis: commons.OptArg[Int] = OptArg.Empty, count: commons.OptArg[Int] = OptArg.Empty): Result[commons.BMap[Key, Seq[XEntry]]]

    Permalink

    Executes XREADGROUP

    Executes XREADGROUP

    Definition Classes
    StreamsApi
  233. def xreadgroupSingle(key: Key, group: XGroup, consumer: XConsumer, id: commons.OptArg[XEntryId] = OptArg.Empty, blockMillis: commons.OptArg[Int] = OptArg.Empty, count: commons.OptArg[Int] = OptArg.Empty): Result[Seq[XEntry]]

    Permalink

    Executes XREADGROUP

    Executes XREADGROUP

    Definition Classes
    StreamsApi
  234. def xrevrange(key: Key, end: commons.OptArg[XEntryId] = OptArg.Empty, start: commons.OptArg[XEntryId] = OptArg.Empty, count: commons.OptArg[Int] = OptArg.Empty): Result[Seq[XEntry]]

    Permalink

    Executes XREVRANGE

    Executes XREVRANGE

    Definition Classes
    StreamsApi
  235. def xtrim(key: Key, maxlen: XMaxlen): Result[Long]

    Permalink

    Executes XTRIM

    Executes XTRIM

    Definition Classes
    StreamsApi
  236. def xtrim(key: Key, maxlen: Long, approx: Boolean = true): Result[Long]

    Permalink

    Executes XTRIM

    Executes XTRIM

    Definition Classes
    StreamsApi
  237. def zadd(key: Key, memberScores: Iterable[(Value, Double)], existence: commons.OptArg[Boolean] = OptArg.Empty, changed: Boolean = false): Result[Int]

    Permalink

    Executes ZADD or simply returns 0 when memberScores is empty

    Executes ZADD or simply returns 0 when memberScores is empty

    Definition Classes
    SortedSetsApi
  238. def zadd(key: Key, score: Double, members: Iterable[Value]): Result[Int]

    Permalink

    Executes ZADD or simply returns 0 when members is empty

    Executes ZADD or simply returns 0 when members is empty

    Definition Classes
    SortedSetsApi
  239. def zadd(key: Key, score: Double, member: Value, members: Value*): Result[Int]

    Permalink

    Executes ZADD

    Executes ZADD

    Definition Classes
    SortedSetsApi
  240. def zadd(key: Key, member: Value, score: Double): Result[Boolean]

    Permalink

    Executes ZADD

    Executes ZADD

    Definition Classes
    SortedSetsApi
  241. def zadd(key: Key, memberScore: (Value, Double), memberScores: (Value, Double)*): Result[Int]

    Permalink

    Executes ZADD

    Executes ZADD

    Definition Classes
    SortedSetsApi
  242. def zaddIncr(key: Key, member: Value, score: Double, existence: commons.OptArg[Boolean] = OptArg.Empty): Result[commons.Opt[Double]]

    Permalink

    Executes ZADD

    Executes ZADD

    Definition Classes
    SortedSetsApi
  243. def zcard(key: Key): Result[Long]

    Permalink

    Executes ZCARD

    Executes ZCARD

    Definition Classes
    SortedSetsApi
  244. def zcount(key: Key, min: ScoreLimit = ScoreLimit.MinusInf, max: ScoreLimit = ScoreLimit.PlusInf): Result[Long]

    Permalink

    Executes ZCOUNT

    Executes ZCOUNT

    Definition Classes
    SortedSetsApi
  245. def zincrby(key: Key, increment: Double, member: Value): Result[Double]

    Permalink

    Executes ZINCRBY

    Executes ZINCRBY

    Definition Classes
    SortedSetsApi
  246. def zinterstore(destination: Key, keys: Iterable[Key], aggregation: commons.OptArg[Aggregation] = OptArg.Empty): Result[Long]

    Permalink

    Executes ZINTERSTORE NOTE: keys MUST NOT be empty

    Executes ZINTERSTORE NOTE: keys MUST NOT be empty

    Definition Classes
    SortedSetsApi
  247. def zinterstore(destination: Key, key: Key, keys: Key*): Result[Long]

    Permalink

    Executes ZINTERSTORE

    Executes ZINTERSTORE

    Definition Classes
    SortedSetsApi
  248. def zinterstoreWeights(destination: Key, keysWeights: Iterable[(Key, Double)], aggregation: commons.OptArg[Aggregation] = OptArg.Empty): Result[Long]

    Permalink

    Executes ZINTERSTORE NOTE: keysWeights MUST NOT be empty

    Executes ZINTERSTORE NOTE: keysWeights MUST NOT be empty

    Definition Classes
    SortedSetsApi
  249. def zinterstoreWeights(destination: Key, keyWeight: (Key, Double), keysWeights: (Key, Double)*): Result[Long]

    Permalink

    Executes ZINTERSTORE

    Executes ZINTERSTORE

    Definition Classes
    SortedSetsApi
  250. def zlexcount(key: Key, min: LexLimit[Value] = LexLimit.MinusInf, max: LexLimit[Value] = LexLimit.PlusInf): Result[Long]

    Permalink

    Executes ZLEXCOUNT

    Executes ZLEXCOUNT

    Definition Classes
    SortedSetsApi
  251. def zpopmax(key: Key, count: Long): Result[Seq[(Value, Double)]]

    Permalink

    Executes ZPOPMAX

    Executes ZPOPMAX

    Definition Classes
    SortedSetsApi
  252. def zpopmax(key: Key): Result[commons.Opt[(Value, Double)]]

    Permalink

    Executes ZPOPMAX

    Executes ZPOPMAX

    Definition Classes
    SortedSetsApi
  253. def zpopmin(key: Key, count: Long): Result[Seq[(Value, Double)]]

    Permalink

    Executes ZPOPMIN

    Executes ZPOPMIN

    Definition Classes
    SortedSetsApi
  254. def zpopmin(key: Key): Result[commons.Opt[(Value, Double)]]

    Permalink

    Executes ZPOPMIN]

    Executes ZPOPMIN]

    Definition Classes
    SortedSetsApi
  255. def zrange(key: Key, start: Long = 0, stop: Long = 1): Result[Seq[Value]]

    Permalink

    Executes ZRANGE

    Executes ZRANGE

    Definition Classes
    SortedSetsApi
  256. def zrangeWithscores(key: Key, start: Long = 0, stop: Long = 1): Result[Seq[(Value, Double)]]

    Permalink

    Executes ZRANGE

    Executes ZRANGE

    Definition Classes
    SortedSetsApi
  257. def zrangebylex(key: Key, min: LexLimit[Value] = LexLimit.MinusInf, max: LexLimit[Value] = LexLimit.PlusInf, limit: commons.OptArg[Limit] = OptArg.Empty): Result[Seq[Value]]

    Permalink

    Executes ZRANGEBYLEX

    Executes ZRANGEBYLEX

    Definition Classes
    SortedSetsApi
  258. def zrangebyscore(key: Key, min: ScoreLimit = ScoreLimit.MinusInf, max: ScoreLimit = ScoreLimit.PlusInf, limit: commons.OptArg[Limit] = OptArg.Empty): Result[Seq[Value]]

    Permalink

    Executes ZRANGEBYSCORE

    Executes ZRANGEBYSCORE

    Definition Classes
    SortedSetsApi
  259. def zrangebyscoreWithscores(key: Key, min: ScoreLimit = ScoreLimit.MinusInf, max: ScoreLimit = ScoreLimit.PlusInf, limit: commons.OptArg[Limit] = OptArg.Empty): Result[Seq[(Value, Double)]]

    Permalink

    Executes ZRANGEBYSCORE

    Executes ZRANGEBYSCORE

    Definition Classes
    SortedSetsApi
  260. def zrank(key: Key, member: Value): Result[commons.Opt[Long]]

    Permalink

    Executes ZRANK

    Executes ZRANK

    Definition Classes
    SortedSetsApi
  261. def zrem(key: Key, members: Iterable[Value]): Result[Int]

    Permalink

    Executes ZREM or simply returns 0 when members is empty

    Executes ZREM or simply returns 0 when members is empty

    Definition Classes
    SortedSetsApi
  262. def zrem(key: Key, member: Value, members: Value*): Result[Int]

    Permalink

    Executes ZREM

    Executes ZREM

    Definition Classes
    SortedSetsApi
  263. def zrem(key: Key, member: Value): Result[Boolean]

    Permalink

    Executes ZREM

    Executes ZREM

    Definition Classes
    SortedSetsApi
  264. def zremrangebylex(key: Key, min: LexLimit[Value] = LexLimit.MinusInf, max: LexLimit[Value] = LexLimit.PlusInf): Result[Long]

    Permalink

    Executes ZREMRANGEBYLEX

    Definition Classes
    SortedSetsApi
  265. def zremrangebyrank(key: Key, start: Long = 0, stop: Long = 1): Result[Long]

    Permalink

    Executes ZREMRANGEBYRANK

    Definition Classes
    SortedSetsApi
  266. def zremrangebyscore(key: Key, min: ScoreLimit = ScoreLimit.MinusInf, max: ScoreLimit = ScoreLimit.PlusInf): Result[Long]

    Permalink

    Executes ZREMRANGEBYSCORE

    Definition Classes
    SortedSetsApi
  267. def zrevrange(key: Key, start: Long = 0, stop: Long = 1): Result[Seq[Value]]

    Permalink

    Executes ZREVRANGE

    Executes ZREVRANGE

    Definition Classes
    SortedSetsApi
  268. def zrevrangeWithscores(key: Key, start: Long = 0, stop: Long = 1): Result[Seq[(Value, Double)]]

    Permalink

    Executes ZREVRANGE

    Executes ZREVRANGE

    Definition Classes
    SortedSetsApi
  269. def zrevrangebylex(key: Key, max: LexLimit[Value] = LexLimit.PlusInf, min: LexLimit[Value] = LexLimit.MinusInf, limit: commons.OptArg[Limit] = OptArg.Empty): Result[Seq[Value]]

    Permalink

    Executes ZREVRANGEBYLEX

    Definition Classes
    SortedSetsApi
  270. def zrevrangebyscore(key: Key, max: ScoreLimit = ScoreLimit.PlusInf, min: ScoreLimit = ScoreLimit.MinusInf, limit: commons.OptArg[Limit] = OptArg.Empty): Result[Seq[Value]]

    Permalink

    Executes ZREVRANGEBYSCORE

    Definition Classes
    SortedSetsApi
  271. def zrevrangebyscoreWithscores(key: Key, max: ScoreLimit = ScoreLimit.PlusInf, min: ScoreLimit = ScoreLimit.MinusInf, limit: commons.OptArg[Limit] = OptArg.Empty): Result[Seq[(Value, Double)]]

    Permalink

    Executes ZREVRANGEBYSCORE

    Definition Classes
    SortedSetsApi
  272. def zrevrank(key: Key, member: Value): Result[commons.Opt[Long]]

    Permalink

    Executes ZREVRANK

    Executes ZREVRANK

    Definition Classes
    SortedSetsApi
  273. def zscan(key: Key, cursor: Cursor, matchPattern: commons.OptArg[Value] = OptArg.Empty, count: commons.OptArg[Int] = OptArg.Empty): Result[(Cursor, Seq[(Value, Double)])]

    Permalink

    Executes ZSCAN

    Executes ZSCAN

    Definition Classes
    SortedSetsApi
  274. def zscore(key: Key, member: Value): Result[commons.Opt[Double]]

    Permalink

    Executes ZSCORE

    Executes ZSCORE

    Definition Classes
    SortedSetsApi
  275. def zunionstore(destination: Key, keys: Iterable[Key], aggregation: commons.OptArg[Aggregation] = OptArg.Empty): Result[Long]

    Permalink

    Executes ZUNIONSTORE NOTE: keys MUST NOT be empty

    Executes ZUNIONSTORE NOTE: keys MUST NOT be empty

    Definition Classes
    SortedSetsApi
  276. def zunionstore(destination: Key, key: Key, keys: Key*): Result[Long]

    Permalink

    Executes ZUNIONSTORE

    Executes ZUNIONSTORE

    Definition Classes
    SortedSetsApi
  277. def zunionstoreWeights(destination: Key, keysWeights: Iterable[(Key, Double)], aggregation: commons.OptArg[Aggregation] = OptArg.Empty): Result[Long]

    Permalink

    Executes ZUNIONSTORE NOTE: keysWeights MUST NOT be empty

    Executes ZUNIONSTORE NOTE: keysWeights MUST NOT be empty

    Definition Classes
    SortedSetsApi
  278. def zunionstoreWeights(destination: Key, keyWeight: (Key, Double), keysWeights: (Key, Double)*): Result[Long]

    Permalink

    Executes ZUNIONSTORE

    Executes ZUNIONSTORE

    Definition Classes
    SortedSetsApi

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from RedisRecoverableKeyedApi

Inherited from RedisKeyedApi

Inherited from StreamsApi

Inherited from HyperLogLogApi

Inherited from SetsApi

Inherited from ListsApi

Inherited from SortedSetsApi

Inherited from HashesApi

Inherited from KeyedScriptingApi

Inherited from GeoApi

Inherited from KeyedClusterApi

Inherited from StringsApi

Inherited from KeyedKeysApi

Inherited from Keyed.BaseAsync[S]

Inherited from RedisAsyncApi

Inherited from RedisExecutedApi

Inherited from RecoverableApiSubset

Inherited from AbstractRedisApi[S]

Inherited from ApiSubset

Inherited from AnyRef

Inherited from Any

Ungrouped