Trait

com.avsystem.commons.redis

RedisKeyedApi

Related Doc: package redis

Permalink

trait RedisKeyedApi extends KeyedKeysApi with StringsApi with KeyedClusterApi with GeoApi with KeyedScriptingApi with HashesApi with SortedSetsApi with ListsApi with SetsApi with HyperLogLogApi

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisKeyedApi
  2. HyperLogLogApi
  3. SetsApi
  4. ListsApi
  5. SortedSetsApi
  6. HashesApi
  7. KeyedScriptingApi
  8. GeoApi
  9. KeyedClusterApi
  10. StringsApi
  11. KeyedKeysApi
  12. ApiSubset
  13. AnyRef
  14. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type HashKey

    Permalink

    The type of Redis hash keys or hash key patterns used in methods representing Redis commands that work on hashes (HashesApi).

    The type of Redis hash keys or hash key patterns used in methods representing Redis commands that work on hashes (HashesApi).

    Definition Classes
    ApiSubset
  2. abstract type Input[A] >: RedisCommand[A]

    Permalink
    Definition Classes
    ApiSubset
  3. abstract type Key

    Permalink

    The type of Redis keys or key patterns used in methods representing Redis commands.

    The type of Redis keys or key patterns used in methods representing Redis commands. For example, if Key = String then get returns Result[Opt[String]]. This type is used only for toplevel Redis keys, hash keys have their own type, HashKey.

    Definition Classes
    ApiSubset
  4. abstract type Result[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
    ApiSubset
  5. abstract type Value

    Permalink

    The type of Redis values used in methods representing Redis commands.

    The type of Redis values used in methods representing Redis commands. "Value" is the data that might be stored directly under a Redis key (e.g. using set) but also a value of hash field, list element, set member, sorted set member, geo set member or element inserted into hyper-log-log structure. There are no separate types specified for every of those use cases because only one of them can be used in a single command (for example, there is no Redis command that works on both list elements and set members at the same time).

    Definition Classes
    ApiSubset

Abstract Value Members

  1. abstract def execute[A](command: Input[A]): Result[A]

    Permalink
    Definition Classes
    ApiSubset
  2. implicit abstract def hashKeyCodec: RedisDataCodec[HashKey]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  3. implicit abstract def keyCodec: RedisDataCodec[Key]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  4. implicit abstract def valueCodec: RedisDataCodec[Value]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset

Concrete 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. def append(key: Key, value: Value): Result[Int]

    Permalink

    APPEND

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

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

    Permalink

    BITCOUNT

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

    Permalink

    BITFIELD

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

    Permalink

    BITFIELD

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

    Permalink

    BITFIELD

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

    Permalink

    BITOP

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

    Permalink

    BITOP

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

    Permalink

    BITPOS

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

    Permalink

    BITPOS

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

    Permalink

    BITPOS

    Definition Classes
    StringsApi
  15. def clone(): AnyRef

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

    Permalink

    CLUSTER KEYSLOT

  17. def decr(key: Key): Result[Long]

    Permalink

    DECR

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

    Permalink

    DECRBY

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

    Permalink

    DEL

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

    Permalink

    DEL

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

    Permalink

    DEL

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

    Permalink

    DUMP

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

    Permalink
    Definition Classes
    AnyRef
  24. def equals(arg0: Any): Boolean

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

    Permalink

    EVAL

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

    Permalink

    EVAL

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

    Permalink

    EVALSHA

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

    Permalink

    EVALSHA

    Definition Classes
    KeyedScriptingApi
  29. def exists(keys: Iterable[Key]): Result[Int]

    Permalink

    EXISTS

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

    Permalink

    EXISTS

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

    Permalink

    EXISTS

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

    Permalink

    EXPIRE

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

    Permalink

    EXPIREAT

    Definition Classes
    KeyedKeysApi
  34. def finalize(): Unit

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

    Permalink

    GEOADD

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

    Permalink

    GEOADD

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

    Permalink

    GEOADD

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

    Permalink

    GEODIST

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

    Permalink

    GEOHASH

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

    Permalink

    GEOHASH

    Definition Classes
    GeoApi
  41. def geohash(key: Key, member: Value): Result[commons.Opt[GeoHash]]

    Permalink

    GEOHASH

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

    Permalink

    GEOPOS

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

    Permalink

    GEOPOS

    Definition Classes
    GeoApi
  44. def geopos(key: Key, member: Value): Result[commons.Opt[GeoPoint]]

    Permalink

    GEOPOS

    Definition Classes
    GeoApi
  45. 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): Result[Seq[commands.GeoApi.georadius.A.Attributed[Value]]]

    Permalink

    GEORADIUS

    Definition Classes
    GeoApi
  46. 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

    GEORADIUS

    Definition Classes
    GeoApi
  47. 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): Result[Seq[commands.GeoApi.georadiusbymember.A.Attributed[Value]]]

    Permalink

    GEORADIUSBYMEMBER

    Definition Classes
    GeoApi
  48. 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

    GEORADIUSBYMEMBER

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

    Permalink

    GET

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

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

    Permalink

    GETBIT

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

    Permalink

    GETRANGE

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

    Permalink

    GETSET

    Definition Classes
    StringsApi
  54. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  55. def hdel(key: Key, fields: Iterable[HashKey]): Result[Int]

    Permalink

    HDEL

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

    Permalink

    HDEL

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

    Permalink

    HDEL

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

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

    Permalink

    HEXISTS

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

    Permalink

    HGET

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

    Permalink

    HGETALL

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

    Permalink

    HINCRBY

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

    Permalink

    HINCRBYFLOAT

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

    Permalink

    HKEYS

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

    Permalink

    HLEN

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

    Permalink

    HMGET

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

    Permalink

    HMGET

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

    Permalink

    HMSET

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

    Permalink

    HMSET

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

    Permalink

    HSCAN

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

    Permalink

    HSET

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

    Permalink

    HSETNX

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

    Permalink

    HSTRLEN

    Definition Classes
    HashesApi
  74. def hvals(key: Key): Result[Seq[Value]]

    Permalink

    HVALS

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

    Permalink

    INCR

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

    Permalink

    INCRBY

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

    Permalink

    INCRBYFLOAT

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

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

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

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

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

    Permalink

    LINDEX

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

    Permalink

    LINSERT

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

    Permalink

    LLEN

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

    Permalink

    LPOP

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

    Permalink

    LPUSH

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

    Permalink

    LPUSH

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

    Permalink

    LPUSHX

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

    Permalink

    LRANGE

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

    Permalink

    LREM

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

    Permalink

    LSET

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

    Permalink

    LTRIM

    Definition Classes
    ListsApi
  93. def mget(keys: Iterable[Key]): Result[Seq[commons.Opt[Value]]]

    Permalink

    MGET

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

    Permalink

    MGET

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

    Permalink

    MIGRATE

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

    Permalink

    MSET

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

    Permalink

    MSET

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

    Permalink

    MSETNX

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

    Permalink

    MSETNX

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

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

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

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

    Permalink

    OBJECT

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

    Permalink

    OBJECT

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

    Permalink

    OBJECT

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

    Permalink

    PERSIST

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

    Permalink

    PEXPIRE

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

    Permalink

    PEXPIREAT

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

    Permalink

    PFADD

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

    Permalink

    PFADD

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

    Permalink

    PFCOUNT

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

    Permalink

    PFCOUNT

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

    Permalink

    PFMERGE

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

    Permalink

    PFMERGE

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

    Permalink

    PSETEX

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

    Permalink

    PTTL

    Definition Classes
    KeyedKeysApi
  117. def rename(key: Key, newkey: Key): Result[Unit]

    Permalink

    RENAME

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

    Permalink

    RENAMENX

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

    Permalink

    RESTORE

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

    Permalink

    RPOP

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

    Permalink

    RPOPLPUSH

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

    Permalink

    RPUSH

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

    Permalink

    RPUSH

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

    Permalink

    RPUSHX

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

    Permalink

    SADD

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

    Permalink

    SADD

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

    Permalink

    SADD

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

    Permalink

    SCARD

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

    Permalink

    SDIFF

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

    Permalink

    SDIFF

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

    Permalink

    SDIFFSTORE

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

    Permalink

    SDIFFSTORE

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

    Permalink

    SET

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

    Permalink

    SETBIT

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

    Permalink

    SETEX

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

    Permalink

    SETNX

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

    Permalink

    SETRANGE

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

    Permalink

    SINTER

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

    Permalink

    SINTER

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

    Permalink

    SINTERSTORE

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

    Permalink

    SINTERSTORE

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

    Permalink

    SISMEMBER

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

    Permalink

    SMEMBERS

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

    Permalink

    SMOVE

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

    Permalink

    SORT

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

    Permalink

    SORT

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

    Permalink

    SORT

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

    Permalink

    SPOP

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

    Permalink

    SPOP

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

    Permalink

    SRANDMEMBER

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

    Permalink

    SRANDMEMBER

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

    Permalink

    SRANDMEMBER

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

    Permalink

    SREM

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

    Permalink

    SREM

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

    Permalink

    SREM

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

    Permalink

    SSCAN

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

    Permalink

    STRLEN

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

    Permalink

    SUNION

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

    Permalink

    SUNION

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

    Permalink

    SUNIONSTORE

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

    Permalink

    SUNIONSTORE

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

    Permalink
    Definition Classes
    AnyRef
  163. def toString(): String

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

    Permalink

    TOUCH

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

    Permalink

    TOUCH

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

    Permalink

    TOUCH

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

    Permalink

    TTL

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

    Permalink

    TYPE

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

    Permalink

    UNLINK

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

    Permalink

    UNLINK

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

    Permalink

    UNLINK

    Definition Classes
    KeyedKeysApi
  172. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  175. def zadd(key: Key, memberScores: Iterable[(Value, Double)], existence: commons.OptArg[Boolean] = OptArg.Empty, changed: Boolean = false): Result[Int]

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZCARD

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

    Permalink

    ZCOUNT

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

    Permalink

    ZINCRBY

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZLEXCOUNT

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

    Permalink

    ZRANGE

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

    Permalink

    ZRANGE

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

    Permalink

    ZRANGEBYLEX

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

    Permalink

    ZRANGEBYSCORE

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

    Permalink

    ZRANGEBYSCORE

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

    Permalink

    ZRANK

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

    Permalink

    ZREM

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

    Permalink

    ZREM

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

    Permalink

    ZREM

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

    Permalink

    ZREMRANGEBYLEX

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

    Permalink

    ZREMRANGEBYRANK

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

    Permalink

    ZREMRANGEBYSCORE

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

    Permalink

    ZREVRANGE

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

    Permalink

    ZREVRANGE

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

    Permalink

    ZREVRANGEBYLEX

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

    Permalink

    ZREVRANGEBYSCORE

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

    Permalink

    ZREVRANGEBYSCORE

  206. def zrevrank(key: Key, member: Value): Result[commons.Opt[Long]]

    Permalink

    ZREVRANK

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

    Permalink

    ZSCAN

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

    Permalink

    ZSCORE

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

    Permalink

    ZUNIONSTORE

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

    Permalink

    ZUNIONSTORE

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

    Permalink

    ZUNIONSTORE

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

    Permalink

    ZUNIONSTORE

    Definition Classes
    SortedSetsApi

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 ApiSubset

Inherited from AnyRef

Inherited from Any

Ungrouped