Trait

com.avsystem.commons.redis

RedisRecoverableNodeApi

Related Doc: package redis

Permalink

trait RedisRecoverableNodeApi extends RedisRecoverableKeyedApi with RedisNodeApi

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisRecoverableNodeApi
  2. RedisNodeApi
  3. NodeScriptingApi
  4. NodeConnectionApi
  5. NodeClusterApi
  6. NodeServerApi
  7. NodeKeysApi
  8. RedisRecoverableKeyedApi
  9. RecoverableKeyedScriptingApi
  10. RecoverableApiSubset
  11. RedisKeyedApi
  12. HyperLogLogApi
  13. SetsApi
  14. ListsApi
  15. SortedSetsApi
  16. HashesApi
  17. KeyedScriptingApi
  18. GeoApi
  19. KeyedClusterApi
  20. StringsApi
  21. KeyedKeysApi
  22. ApiSubset
  23. AnyRef
  24. 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. abstract def recoverWith[A](executed: ⇒ Result[A])(fun: PartialFunction[Throwable, Result[A]]): Result[A]

    Permalink
    Attributes
    protected
    Definition Classes
    RecoverableApiSubset
  5. 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 bgrewriteaof: Result[String]

    Permalink

    BGREWRITEAOF

    Definition Classes
    NodeServerApi
  7. def bgsave(schedule: Boolean = false): Result[String]

    Permalink

    BGSAVE

    Definition Classes
    NodeServerApi
  8. def bgsave: Result[String]

    Permalink

    BGSAVE

    Definition Classes
    NodeServerApi
  9. def bitcount(key: Key, range: OptArg[(Int, Int)] = OptArg.Empty): Result[Long]

    Permalink

    BITCOUNT

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

    Permalink

    BITFIELD

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

    Permalink

    BITFIELD

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

    Permalink

    BITFIELD

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

    Permalink

    BITOP

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

    Permalink

    BITOP

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

    Permalink

    BITPOS

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

    Permalink

    BITPOS

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

    Permalink

    BITPOS

    Definition Classes
    StringsApi
  18. def clientKill(filters: ClientFilter*): Result[Int]

    Permalink

    CLIENT KILL

    Definition Classes
    NodeServerApi
  19. def clientKill(addr: ClientAddress): Result[Unit]

    Permalink

    CLIENT KILL

    Definition Classes
    NodeServerApi
  20. def clientList: Result[Seq[ClientInfo]]

    Permalink

    CLIENT LIST

    Definition Classes
    NodeServerApi
  21. def clientPause(timeout: Long): Result[Unit]

    Permalink

    CLIENT PAUSE

    Definition Classes
    NodeServerApi
  22. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. def clusterAddslots(slots: Iterable[Int]): Result[Unit]

    Permalink

    CLUSTER ADDSLOTS

  24. def clusterAddslots(slot: Int, slots: Int*): Result[Unit]

    Permalink

    CLUSTER ADDSLOTS

  25. def clusterCountFailureReports(nodeId: NodeId): Result[Long]

    Permalink

    CLUSTER COUNT-FAILURE-REPORTS

  26. def clusterCountkeysinslot(slot: Int): Result[Long]

    Permalink

    CLUSTER COUNTKEYSINSLOT

  27. def clusterDelslots(slots: Iterable[Int]): Result[Unit]

    Permalink

    CLUSTER DELSLOTS

  28. def clusterDelslots(slot: Int, slots: Int*): Result[Unit]

    Permalink

    CLUSTER DELSLOTS

  29. def clusterFailover(option: OptArg[FailoverOption] = OptArg.Empty): Result[Unit]

    Permalink

    CLUSTER FAILOVER

  30. def clusterFailover: Result[Unit]

    Permalink

    CLUSTER FAILOVER

  31. def clusterFlushslots: Result[Unit]

    Permalink
    Definition Classes
    NodeClusterApi
  32. def clusterForget(nodeId: NodeId): Result[Unit]

    Permalink

    CLUSTER FORGET

    Definition Classes
    NodeClusterApi
  33. def clusterGetkeysinslot(slot: Int, count: Int): Result[Seq[Key]]

    Permalink

    CLUSTER GETKEYSINSLOT

  34. def clusterInfo: Result[ClusterStateInfo]

    Permalink

    CLUSTER INFO

    Definition Classes
    NodeClusterApi
  35. def clusterKeyslot(key: Key): Result[Int]

    Permalink

    CLUSTER KEYSLOT

  36. def clusterMeet(address: NodeAddress): Result[Unit]

    Permalink

    CLUSTER MEET

    Definition Classes
    NodeClusterApi
  37. def clusterMyid: Result[NodeId]

    Permalink
    Definition Classes
    NodeClusterApi
  38. def clusterNodes: Result[Seq[NodeInfo]]

    Permalink

    CLUSTER NODES

    Definition Classes
    NodeClusterApi
  39. def clusterReplicate(nodeId: NodeId): Result[Unit]

    Permalink

    CLUSTER REPLICATE

  40. def clusterReset(hard: Boolean = false): Result[Unit]

    Permalink

    CLUSTER RESET

    Definition Classes
    NodeClusterApi
  41. def clusterReset: Result[Unit]

    Permalink

    CLUSTER RESET

    Definition Classes
    NodeClusterApi
  42. def clusterSaveconfig: Result[Unit]

    Permalink

    CLUSTER SAVECONFIG

  43. def clusterSetConfigEpoch(configEpoch: Long): Result[Unit]

    Permalink

    CLUSTER SET-CONFIG-EPOCH

  44. def clusterSetslot(slot: Int, subcommand: SetslotCmd): Result[Unit]

    Permalink

    CLUSTER SETSLOT

  45. def clusterSlaves(nodeId: NodeId): Result[Seq[NodeInfo]]

    Permalink

    CLUSTER SLAVES

    Definition Classes
    NodeClusterApi
  46. def clusterSlots: Result[Seq[SlotRangeMapping[NodeAddress]]]

    Permalink

    CLUSTER SLOTS

    Definition Classes
    NodeClusterApi
  47. def clusterSlotsWithNodeIds: Result[Seq[SlotRangeMapping[(NodeAddress, NodeId)]]]

    Permalink

    CLUSTER SLOTS

    Definition Classes
    NodeClusterApi
  48. def command: Result[Seq[CommandInfo]]

    Permalink

    COMMAND

    Definition Classes
    NodeServerApi
  49. def commandCount: Result[Int]

    Permalink

    COMMAND COUNT

    Definition Classes
    NodeServerApi
  50. def commandGetkeys(command: Seq[ByteString]): Result[Seq[Key]]

    Permalink

    COMMAND GETKEYS

    Definition Classes
    NodeServerApi
  51. def commandGetkeys(command: RawCommand): Result[Seq[Key]]

    Permalink

    COMMAND GETKEYS

    Definition Classes
    NodeServerApi
  52. def commandInfo(commandNames: Seq[String]): Result[Seq[CommandInfo]]

    Permalink

    COMMAND INFO

    Definition Classes
    NodeServerApi
  53. def commandInfo(commandName: String, commandNames: String*): Result[Seq[CommandInfo]]

    Permalink

    COMMAND INFO

    Definition Classes
    NodeServerApi
  54. def commandInfo(commandName: String): Result[CommandInfo]

    Permalink

    COMMAND INFO

    Definition Classes
    NodeServerApi
  55. def configGet(parameter: String): Result[Seq[(String, String)]]

    Permalink

    CONFIG GET

    Definition Classes
    NodeServerApi
  56. def configResetstat: Result[Unit]

    Permalink

    CONFIG RESETSTAT

  57. def configRewrite: Result[Unit]

    Permalink

    CONFIG REWRITE

    Definition Classes
    NodeServerApi
  58. def configSet(parameter: String, value: String): Result[Unit]

    Permalink

    CONFIG SET

    Definition Classes
    NodeServerApi
  59. def dbsize: Result[Long]

    Permalink

    DBSIZE

    Definition Classes
    NodeServerApi
  60. def debugSegfault: Result[Nothing]

    Permalink

    DEBUG SEGFAULT

    Definition Classes
    NodeServerApi
  61. def decr(key: Key): Result[Long]

    Permalink

    DECR

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

    Permalink

    DECRBY

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

    Permalink

    DEL

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

    Permalink

    DEL

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

    Permalink

    DEL

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

    Permalink

    DUMP

    Definition Classes
    KeyedKeysApi
  67. def echo(message: Value): Result[Value]

    Permalink

    ECHO

    Definition Classes
    NodeConnectionApi
  68. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink

    EVAL

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

    Permalink

    EVAL

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

    Permalink

    EVALSHA

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

    Permalink

    EVALSHA

    Definition Classes
    KeyedScriptingApi
  74. 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
  75. def exists(keys: Iterable[Key]): Result[Int]

    Permalink

    EXISTS

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

    Permalink

    EXISTS

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

    Permalink

    EXISTS

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

    Permalink

    EXPIRE

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

    Permalink

    EXPIREAT

    Definition Classes
    KeyedKeysApi
  80. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  81. def flushall: Result[Unit]

    Permalink

    FLUSHALL

    Definition Classes
    NodeServerApi
  82. def flushdb: Result[Unit]

    Permalink

    FLUSHDB

    Definition Classes
    NodeServerApi
  83. def geoadd(key: Key, items: Iterable[(Value, GeoPoint)]): Result[Int]

    Permalink

    GEOADD

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

    Permalink

    GEOADD

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

    Permalink

    GEOADD

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

    Permalink

    GEODIST

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

    Permalink

    GEOHASH

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

    Permalink

    GEOHASH

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

    Permalink

    GEOHASH

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

    Permalink

    GEOPOS

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

    Permalink

    GEOPOS

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

    Permalink

    GEOPOS

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

    Permalink

    GEORADIUS

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

    Permalink

    GEORADIUS

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

    Permalink

    GEORADIUSBYMEMBER

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

    Permalink

    GEORADIUSBYMEMBER

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

    Permalink

    GET

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

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

    Permalink

    GETBIT

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

    Permalink

    GETRANGE

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

    Permalink

    GETSET

    Definition Classes
    StringsApi
  102. def hashCode(): Int

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

    Permalink

    HDEL

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

    Permalink

    HDEL

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

    Permalink

    HDEL

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

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

    Permalink

    HEXISTS

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

    Permalink

    HGET

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

    Permalink

    HGETALL

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

    Permalink

    HINCRBY

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

    Permalink

    HINCRBYFLOAT

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

    Permalink

    HKEYS

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

    Permalink

    HLEN

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

    Permalink

    HMGET

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

    Permalink

    HMGET

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

    Permalink

    HMSET

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

    Permalink

    HMSET

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

    Permalink

    HSCAN

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

    Permalink

    HSET

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

    Permalink

    HSETNX

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

    Permalink

    HSTRLEN

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

    Permalink

    HVALS

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

    Permalink

    INCR

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

    Permalink

    INCRBY

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

    Permalink

    INCRBYFLOAT

    Definition Classes
    StringsApi
  126. def info[T >: FullRedisInfo <: RedisInfo](section: RedisInfoSection[T]): Result[T]

    Permalink

    INFO

    Definition Classes
    NodeServerApi
  127. def info: Result[DefaultRedisInfo]

    Permalink

    INFO

    Definition Classes
    NodeServerApi
  128. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    KeyedClusterApi
  132. def keys(pattern: Key): Result[BSet[Key]]

    Permalink

    KEYS

    Definition Classes
    NodeKeysApi
  133. def lastsave: Result[Long]

    Permalink

    LASTSAVE

    Definition Classes
    NodeServerApi
  134. def lindex(key: Key, index: Long): Result[Opt[Value]]

    Permalink

    LINDEX

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

    Permalink

    LINSERT

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

    Permalink

    LLEN

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

    Permalink

    LPOP

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

    Permalink

    LPUSH

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

    Permalink

    LPUSH

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

    Permalink

    LPUSHX

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

    Permalink

    LRANGE

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

    Permalink

    LREM

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

    Permalink

    LSET

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

    Permalink

    LTRIM

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

    Permalink

    MGET

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

    Permalink

    MGET

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

    Permalink

    MIGRATE

    Definition Classes
    KeyedKeysApi
  148. def move(key: Key, db: Int): Result[Boolean]

    Permalink

    MOVE

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

    Permalink

    MSET

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

    Permalink

    MSET

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

    Permalink

    MSETNX

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

    Permalink

    MSETNX

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

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

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

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

    Permalink

    OBJECT

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

    Permalink

    OBJECT

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

    Permalink

    OBJECT

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

    Permalink

    PERSIST

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

    Permalink

    PEXPIRE

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

    Permalink

    PEXPIREAT

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

    Permalink

    PFADD

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

    Permalink

    PFADD

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

    Permalink

    PFCOUNT

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

    Permalink

    PFCOUNT

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

    Permalink

    PFMERGE

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

    Permalink

    PFMERGE

    Definition Classes
    HyperLogLogApi
  168. def ping: Result[ByteString]

    Permalink

    PING

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

    Permalink

    PSETEX

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

    Permalink

    PTTL

    Definition Classes
    KeyedKeysApi
  171. def randomkey: Result[Opt[Key]]

    Permalink

    RANDOMKEY

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

    Permalink

    RENAME

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

    Permalink

    RENAMENX

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

    Permalink

    RESTORE

    Definition Classes
    KeyedKeysApi
  175. def role: Result[RedisRole]

    Permalink

    ROLE

    Definition Classes
    NodeServerApi
  176. def rpop(key: Key): Result[Opt[Value]]

    Permalink

    RPOP

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

    Permalink

    RPOPLPUSH

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

    Permalink

    RPUSH

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

    Permalink

    RPUSH

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

    Permalink

    RPUSHX

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

    Permalink

    SADD

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

    Permalink

    SADD

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

    Permalink

    SADD

    Definition Classes
    SetsApi
  184. def save: Result[Unit]

    Permalink

    SAVE

    Definition Classes
    NodeServerApi
  185. def scan(cursor: Cursor, matchPattern: OptArg[Key] = OptArg.Empty, count: OptArg[Long] = OptArg.Empty): Result[(Cursor, Seq[Key])]

    Permalink

    SCAN

    Definition Classes
    NodeKeysApi
  186. def scard(key: Key): Result[Long]

    Permalink

    SCARD

    Definition Classes
    SetsApi
  187. def scriptExists(hashes: Iterable[Sha1]): Result[Seq[Boolean]]

    Permalink

    SCRIPT EXISTS

  188. def scriptExists(hash: Sha1, hashes: Sha1*): Result[Seq[Boolean]]

    Permalink

    SCRIPT EXISTS

  189. def scriptExists(hash: Sha1): Result[Boolean]

    Permalink

    SCRIPT EXISTS

  190. def scriptFlush: Result[Unit]

    Permalink

    SCRIPT FLUSH

    Definition Classes
    NodeScriptingApi
  191. def scriptKill: Result[Unit]

    Permalink

    SCRIPT KILL

    Definition Classes
    NodeScriptingApi
  192. def scriptLoad(script: RedisScript[Any]): Result[Sha1]

    Permalink

    SCRIPT LOAD

    Definition Classes
    NodeScriptingApi
  193. def sdiff(source: Key, keys: Iterable[Key]): Result[BSet[Value]]

    Permalink

    SDIFF

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

    Permalink

    SDIFF

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

    Permalink

    SDIFFSTORE

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

    Permalink

    SDIFFSTORE

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

    Permalink

    SET

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

    Permalink

    SETBIT

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

    Permalink

    SETEX

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

    Permalink

    SETNX

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

    Permalink

    SETRANGE

    Definition Classes
    StringsApi
  202. def shutdown(modifier: OptArg[ShutdownModifier] = OptArg.Empty): Result[Nothing]

    Permalink

    SHUTDOWN

    Definition Classes
    NodeServerApi
  203. def shutdown: Result[Nothing]

    Permalink

    SHUTDOWN

    Definition Classes
    NodeServerApi
  204. def sinter(keys: Iterable[Key]): Result[BSet[Value]]

    Permalink

    SINTER

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

    Permalink

    SINTER

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

    Permalink

    SINTERSTORE

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

    Permalink

    SINTERSTORE

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

    Permalink

    SISMEMBER

    Definition Classes
    SetsApi
  209. def slaveof(newMaster: NodeAddress): Result[Unit]

    Permalink

    SLAVEOF

    Definition Classes
    NodeServerApi
  210. def slaveofNoOne: Result[Unit]

    Permalink

    SLAVEOF

    Definition Classes
    NodeServerApi
  211. def slowlogGet(count: OptArg[Int] = OptArg.Empty): Result[Seq[SlowlogEntry]]

    Permalink

    SLOWLOG

    Definition Classes
    NodeServerApi
  212. def slowlogGet: Result[Seq[SlowlogEntry]]

    Permalink

    SLOWLOG

    Definition Classes
    NodeServerApi
  213. def slowlogLen: Result[Long]

    Permalink

    SLOWLOG

    Definition Classes
    NodeServerApi
  214. def slowlogReset: Result[Unit]

    Permalink

    SLOWLOG

    Definition Classes
    NodeServerApi
  215. def smembers(key: Key): Result[BSet[Value]]

    Permalink

    SMEMBERS

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

    Permalink

    SMOVE

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

    Permalink

    SORT

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

    Permalink

    SORT

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

    Permalink

    SORT

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

    Permalink

    SPOP

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

    Permalink

    SPOP

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

    Permalink

    SRANDMEMBER

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

    Permalink

    SRANDMEMBER

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

    Permalink

    SRANDMEMBER

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

    Permalink

    SREM

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

    Permalink

    SREM

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

    Permalink

    SREM

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

    Permalink

    SSCAN

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

    Permalink

    STRLEN

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

    Permalink

    SUNION

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

    Permalink

    SUNION

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

    Permalink

    SUNIONSTORE

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

    Permalink

    SUNIONSTORE

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

    Permalink
    Definition Classes
    AnyRef
  235. def time: Result[RedisTimestamp]

    Permalink

    TIME

    Definition Classes
    NodeServerApi
  236. def toString(): String

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

    Permalink

    TOUCH

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

    Permalink

    TOUCH

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

    Permalink

    TOUCH

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

    Permalink

    TTL

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

    Permalink

    TYPE

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

    Permalink

    UNLINK

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

    Permalink

    UNLINK

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

    Permalink

    UNLINK

    Definition Classes
    KeyedKeysApi
  245. def wait(numslaves: Int, timeout: Long): Result[Long]

    Permalink

    WAIT

    Definition Classes
    NodeKeysApi
  246. final def wait(): Unit

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

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

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZCARD

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

    Permalink

    ZCOUNT

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

    Permalink

    ZINCRBY

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZLEXCOUNT

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

    Permalink

    ZRANGE

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

    Permalink

    ZRANGE

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

    Permalink

    ZRANGEBYLEX

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

    Permalink

    ZRANGEBYSCORE

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

    Permalink

    ZRANGEBYSCORE

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

    Permalink

    ZRANK

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

    Permalink

    ZREM

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

    Permalink

    ZREM

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

    Permalink

    ZREM

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

    Permalink

    ZREMRANGEBYLEX

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

    Permalink

    ZREMRANGEBYRANK

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

    Permalink

    ZREMRANGEBYSCORE

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

    Permalink

    ZREVRANGE

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

    Permalink

    ZREVRANGE

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

    Permalink

    ZREVRANGEBYLEX

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

    Permalink

    ZREVRANGEBYSCORE

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

    Permalink

    ZREVRANGEBYSCORE

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

    Permalink

    ZREVRANK

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

    Permalink

    ZSCAN

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

    Permalink

    ZSCORE

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

    Permalink

    ZUNIONSTORE

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

    Permalink

    ZUNIONSTORE

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

    Permalink

    ZUNIONSTORE

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

    Permalink

    ZUNIONSTORE

    Definition Classes
    SortedSetsApi

Inherited from RedisNodeApi

Inherited from NodeScriptingApi

Inherited from NodeConnectionApi

Inherited from NodeClusterApi

Inherited from NodeServerApi

Inherited from NodeKeysApi

Inherited from RedisRecoverableKeyedApi

Inherited from RecoverableApiSubset

Inherited from RedisKeyedApi

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