Trait

com.avsystem.commons.redis

RedisNodeApi

Related Doc: package redis

Permalink

trait RedisNodeApi extends RedisKeyedApi with NodeKeysApi with NodeServerApi with NodeClusterApi with NodeConnectionApi with NodeScriptingApi

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisNodeApi
  2. NodeScriptingApi
  3. NodeConnectionApi
  4. NodeClusterApi
  5. NodeServerApi
  6. NodeKeysApi
  7. RedisKeyedApi
  8. StreamsApi
  9. HyperLogLogApi
  10. SetsApi
  11. ListsApi
  12. SortedSetsApi
  13. HashesApi
  14. KeyedScriptingApi
  15. GeoApi
  16. KeyedClusterApi
  17. StringsApi
  18. KeyedKeysApi
  19. ApiSubset
  20. AnyRef
  21. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Field = RedisSerialization.Field

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

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

    Permalink
    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. type Value = RedisSerialization.Value

    Permalink
    Definition Classes
    ApiSubset
  6. type XEntry = commands.XEntry[Record]

    Permalink
    Definition Classes
    StreamsApi

Abstract Value Members

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

    Permalink
    Definition Classes
    ApiSubset
  2. abstract val serialization: RedisSerialization

    Permalink
    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. 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 bgrewriteaof: Result[String]

    Permalink

    Executes BGREWRITEAOF

    Executes BGREWRITEAOF

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

    Permalink

    Executes BGSAVE

    Executes BGSAVE

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

    Permalink

    Executes BGSAVE

    Executes BGSAVE

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

    Permalink

    Executes BITCOUNT

    Executes BITCOUNT

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

    Permalink

    Executes BITFIELD

    Executes BITFIELD

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

    Permalink

    Executes BITFIELD

    Executes BITFIELD

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

    Permalink

    Executes BITFIELD

    Executes BITFIELD

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

    Permalink

    Executes BITOP

    Executes BITOP

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

    Permalink

    Executes BITOP

    Executes BITOP

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

    Permalink

    Executes BITPOS

    Executes BITPOS

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

    Permalink

    Executes BITPOS

    Executes BITPOS

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

    Permalink

    Executes BITPOS

    Executes BITPOS

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

    Permalink

    Executes BLPOP

    Executes BLPOP

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

    Permalink

    Executes BLPOP

    Executes BLPOP

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

    Permalink

    Executes BRPOP

    Executes BRPOP

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

    Permalink

    Executes BRPOP

    Executes BRPOP

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

    Permalink

    Executes BRPOPLPUSH

    Executes BRPOPLPUSH

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

    Permalink

    Executes BZPOPMAX

    Executes BZPOPMAX

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

    Permalink

    Executes BZPOPMAX

    Executes BZPOPMAX

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

    Permalink

    Executes BZPOPMIN

    Executes BZPOPMIN

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

    Permalink

    Executes BZPOPMIN

    Executes BZPOPMIN

    Definition Classes
    SortedSetsApi
  28. def clientId: Result[ClientId]

    Permalink

    Executes CLIENT ID

    Executes CLIENT ID

    Definition Classes
    NodeServerApi
  29. def clientKill(filters: ClientFilter*): Result[Int]

    Permalink

    Executes CLIENT KILL

    Executes CLIENT KILL

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

    Permalink

    Executes CLIENT KILL

    Executes CLIENT KILL

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

    Permalink

    Executes CLIENT LIST

    Executes CLIENT LIST

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

    Permalink

    Executes CLIENT PAUSE

    Executes CLIENT PAUSE

    Definition Classes
    NodeServerApi
  33. def clientUnblock(clientId: ClientId, modifier: commons.OptArg[UnblockModifier] = OptArg.Empty): Result[Boolean]

    Permalink

    Executes CLIENT UNBLOCK

    Definition Classes
    NodeServerApi
  34. def clone(): AnyRef

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

    Permalink

    Executes CLUSTER ADDSLOTS or does nothing when slots is empty.

    Executes CLUSTER ADDSLOTS or does nothing when slots is empty.

    Definition Classes
    NodeClusterApi
  36. def clusterAddslots(slot: Int, slots: Int*): Result[Unit]

    Permalink

    Executes CLUSTER ADDSLOTS

    Definition Classes
    NodeClusterApi
  37. def clusterCountFailureReports(nodeId: NodeId): Result[Long]

    Permalink

    Executes CLUSTER COUNT-FAILURE-REPORTS

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

    Permalink

    Executes CLUSTER COUNTKEYSINSLOT

    Definition Classes
    NodeClusterApi
  39. def clusterDelslots(slots: Iterable[Int]): Result[Unit]

    Permalink

    Executes CLUSTER DELSLOTS or does nothing when slots is empty

    Executes CLUSTER DELSLOTS or does nothing when slots is empty

    Definition Classes
    NodeClusterApi
  40. def clusterDelslots(slot: Int, slots: Int*): Result[Unit]

    Permalink

    Executes CLUSTER DELSLOTS

    Definition Classes
    NodeClusterApi
  41. def clusterFailover(option: commons.OptArg[FailoverOption] = OptArg.Empty): Result[Unit]

    Permalink

    Executes CLUSTER FAILOVER

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

    Permalink

    Executes CLUSTER FAILOVER

    Definition Classes
    NodeClusterApi
  43. def clusterFlushslots: Result[Unit]

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

    Permalink

    Executes CLUSTER FORGET

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

    Permalink

    Executes CLUSTER GETKEYSINSLOT

    Definition Classes
    NodeClusterApi
  46. def clusterInfo: Result[ClusterStateInfo]

    Permalink

    Executes CLUSTER INFO

    Executes CLUSTER INFO

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

    Permalink

    Executes CLUSTER KEYSLOT

    Definition Classes
    KeyedClusterApi
  48. def clusterMeet(address: NodeAddress): Result[Unit]

    Permalink

    Executes CLUSTER MEET

    Executes CLUSTER MEET

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

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

    Permalink

    Executes CLUSTER NODES

    Executes CLUSTER NODES

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

    Permalink

    Executes CLUSTER REPLICATE

    Definition Classes
    NodeClusterApi
  52. def clusterReset(hard: Boolean = false): Result[Unit]

    Permalink

    Executes CLUSTER RESET

    Executes CLUSTER RESET

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

    Permalink

    Executes CLUSTER RESET

    Executes CLUSTER RESET

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

    Permalink

    Executes CLUSTER SAVECONFIG

    Definition Classes
    NodeClusterApi
  55. def clusterSetConfigEpoch(configEpoch: Long): Result[Unit]

    Permalink

    Executes CLUSTER SET-CONFIG-EPOCH

    Definition Classes
    NodeClusterApi
  56. def clusterSetslot(slot: Int, subcommand: SetslotCmd): Result[Unit]

    Permalink

    Executes CLUSTER SETSLOT

    Definition Classes
    NodeClusterApi
  57. def clusterSlaves(nodeId: NodeId): Result[Seq[NodeInfo]]

    Permalink

    Executes CLUSTER SLAVES

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

    Permalink

    Executes CLUSTER SLOTS

    Executes CLUSTER SLOTS

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

    Permalink

    Executes COMMAND

    Executes COMMAND

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

    Permalink

    Executes COMMAND COUNT

    Executes COMMAND COUNT

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

    Permalink

    Executes COMMAND GETKEYS

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

    Permalink

    Executes COMMAND GETKEYS

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

    Permalink

    Executes COMMAND INFO

    Executes COMMAND INFO

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

    Permalink

    Executes COMMAND INFO

    Executes COMMAND INFO

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

    Permalink

    Executes COMMAND INFO

    Executes COMMAND INFO

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

    Permalink

    Executes CONFIG GET

    Executes CONFIG GET

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

    Permalink

    Executes CONFIG RESETSTAT

    Definition Classes
    NodeServerApi
  68. def configRewrite: Result[Unit]

    Permalink

    Executes CONFIG REWRITE

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

    Permalink

    Executes CONFIG SET

    Executes CONFIG SET

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

    Permalink

    Executes DBSIZE

    Executes DBSIZE

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

    Permalink

    Executes DEBUG SEGFAULT

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

    Permalink

    Executes DECR

    Executes DECR

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

    Permalink

    Executes DECRBY

    Executes DECRBY

    Definition Classes
    StringsApi
  74. 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
  75. def del(key: Key, keys: Key*): Result[Int]

    Permalink

    Executes DEL

    Executes DEL

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

    Permalink

    Executes DEL

    Executes DEL

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

    Permalink

    Executes DUMP

    Executes DUMP

    Definition Classes
    KeyedKeysApi
  78. def echo(message: ByteString): Result[ByteString]

    Permalink

    Executes ECHO

    Executes ECHO

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

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

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

    Permalink

    Executes EVAL

    Executes EVAL

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

    Permalink

    Executes EVAL

    Executes EVAL

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

    Permalink

    Executes EVALSHA

    Executes EVALSHA

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

    Permalink

    Executes EVALSHA

    Executes EVALSHA

    Definition Classes
    KeyedScriptingApi
  85. 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
  86. def exists(key: Key, keys: Key*): Result[Int]

    Permalink

    Executes EXISTS

    Executes EXISTS

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

    Permalink

    Executes EXISTS

    Executes EXISTS

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

    Permalink

    Executes EXPIRE

    Executes EXPIRE

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

    Permalink

    Executes EXPIREAT

    Executes EXPIREAT

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

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  91. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  92. def flushall(async: Boolean = false): Result[Unit]

    Permalink

    Executes FLUSHALL

    Executes FLUSHALL

    Definition Classes
    NodeServerApi
  93. def flushall: Result[Unit]

    Permalink

    Executes FLUSHALL

    Executes FLUSHALL

    Definition Classes
    NodeServerApi
  94. def flushdb(async: Boolean = false): Result[Unit]

    Permalink

    Executes FLUSHDB

    Executes FLUSHDB

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

    Permalink

    Executes FLUSHDB

    Executes FLUSHDB

    Definition Classes
    NodeServerApi
  96. 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
  97. def geoadd(key: Key, item: (Value, GeoPoint), items: (Value, GeoPoint)*): Result[Int]

    Permalink

    Executes GEOADD

    Executes GEOADD

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

    Permalink

    Executes GEOADD

    Executes GEOADD

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

    Permalink

    Executes GEODIST

    Executes GEODIST

    Definition Classes
    GeoApi
  100. 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
  101. def geohash(key: Key, members: Value*): Result[Seq[commons.Opt[GeoHash]]]

    Permalink

    Executes GEOHASH

    Executes GEOHASH

    Definition Classes
    GeoApi
  102. 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
  103. def geopos(key: Key, members: Value*): Result[Seq[commons.Opt[GeoPoint]]]

    Permalink

    Executes GEOPOS

    Executes GEOPOS

    Definition Classes
    GeoApi
  104. 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
  105. 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
  106. 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
  107. 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
  108. def get(key: Key): Result[commons.Opt[Value]]

    Permalink

    Executes GET

    Executes GET

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

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

    Permalink

    Executes GETBIT

    Executes GETBIT

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

    Permalink

    Executes GETRANGE

    Executes GETRANGE

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

    Permalink

    Executes GETSET

    Executes GETSET

    Definition Classes
    StringsApi
  113. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  114. 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
  115. def hdel(key: Key, field: Field, fields: Field*): Result[Int]

    Permalink

    Executes HDEL

    Executes HDEL

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

    Permalink

    Executes HDEL

    Executes HDEL

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

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

    Permalink

    Executes HEXISTS

    Executes HEXISTS

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

    Permalink

    Executes HGET

    Executes HGET

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

    Permalink

    Executes HGETALL

    Executes HGETALL

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

    Permalink

    Executes HGETALL

    Executes HGETALL

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

    Permalink

    Executes HINCRBY

    Executes HINCRBY

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

    Permalink

    Executes HINCRBYFLOAT

    Executes HINCRBYFLOAT

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

    Permalink

    Executes HKEYS

    Executes HKEYS

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

    Permalink

    Executes HLEN

    Executes HLEN

    Definition Classes
    HashesApi
  126. 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
  127. def hmget(key: Key, field: Field, fields: Field*): Result[Seq[commons.Opt[Value]]]

    Permalink

    Executes HMGET

    Executes HMGET

    Definition Classes
    HashesApi
  128. 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
  129. def hmset(key: Key, fieldValue: (Field, Value), fieldValues: (Field, Value)*): Result[Unit]

    Permalink

    Executes HMSET

    Executes HMSET

    Definition Classes
    HashesApi
  130. 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
  131. 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
  132. 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
  133. def hset(key: Key, fieldValue: (Field, Value), fieldValues: (Field, Value)*): Result[Int]

    Permalink

    Executes HSET

    Executes HSET

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

    Permalink

    Executes HSET

    Executes HSET

    Definition Classes
    HashesApi
  135. 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
  136. def hsetnx(key: Key, field: Field, value: Value): Result[Boolean]

    Permalink

    Executes HSETNX

    Executes HSETNX

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

    Permalink

    Executes HSTRLEN

    Executes HSTRLEN

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

    Permalink

    Executes HVALS

    Executes HVALS

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

    Permalink

    Executes INCR

    Executes INCR

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

    Permalink

    Executes INCRBY

    Executes INCRBY

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

    Permalink

    Executes INCRBYFLOAT

    Executes INCRBYFLOAT

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

    Permalink

    Executes INFO

    Executes INFO

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

    Permalink

    Executes INFO

    Executes INFO

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

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

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

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

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

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

    Permalink

    Executes KEYS

    Executes KEYS

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

    Permalink

    Executes LASTSAVE

    Executes LASTSAVE

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

    Permalink

    Executes LINDEX

    Executes LINDEX

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

    Permalink

    Executes LINSERT

    Executes LINSERT

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

    Permalink

    Executes LLEN

    Executes LLEN

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

    Permalink

    Executes LPOP

    Executes LPOP

    Definition Classes
    ListsApi
  155. 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
  156. def lpush(key: Key, value: Value, values: Value*): Result[Long]

    Permalink

    Executes LPUSH

    Executes LPUSH

    Definition Classes
    ListsApi
  157. 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
  158. def lpushx(key: Key, values: Iterable[Value]): Result[Long]

    Permalink

    Executes LPUSHX

    Executes LPUSHX

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

    Permalink

    Executes LPUSHX

    Executes LPUSHX

    Definition Classes
    ListsApi
  160. 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
  161. def lrange(key: Key, start: Long = 0, stop: Long = 1): Result[Seq[Value]]

    Permalink

    Executes LRANGE

    Executes LRANGE

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

    Permalink

    Executes LREM

    Executes LREM

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

    Permalink

    Executes LSET

    Executes LSET

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

    Permalink

    Executes LTRIM

    Executes LTRIM

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

    Permalink
    Definition Classes
    KeyedKeysApi
  166. 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
  167. def mget(key: Key, keys: Key*): Result[Seq[commons.Opt[Value]]]

    Permalink

    Executes MGET

    Executes MGET

    Definition Classes
    StringsApi
  168. 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
  169. def move(key: Key, db: Int): Result[Boolean]

    Permalink

    Executes MOVE

    Executes MOVE

    Definition Classes
    NodeKeysApi
  170. 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
  171. def mset(keyValue: (Key, Value), keyValues: (Key, Value)*): Result[Unit]

    Permalink

    Executes MSET

    Executes MSET

    Definition Classes
    StringsApi
  172. 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
  173. def msetnx(keyValue: (Key, Value), keyValues: (Key, Value)*): Result[Boolean]

    Permalink

    Executes MSETNX

    Executes MSETNX

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

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

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

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

    Permalink

    Executes OBJECT

    Executes OBJECT

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

    Permalink

    Executes OBJECT

    Executes OBJECT

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

    Permalink

    Executes OBJECT

    Executes OBJECT

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

    Permalink

    Executes PERSIST

    Executes PERSIST

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

    Permalink

    Executes PEXPIRE

    Executes PEXPIRE

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

    Permalink

    Executes PEXPIREAT

    Executes PEXPIREAT

    Definition Classes
    KeyedKeysApi
  183. 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
  184. def pfadd(key: Key, elements: Value*): Result[Boolean]

    Permalink

    Executes PFADD

    Executes PFADD

    Definition Classes
    HyperLogLogApi
  185. 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
  186. def pfcount(key: Key, keys: Key*): Result[Long]

    Permalink

    Executes PFCOUNT

    Executes PFCOUNT

    Definition Classes
    HyperLogLogApi
  187. 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
  188. def pfmerge(destkey: Key, sourcekeys: Key*): Result[Unit]

    Permalink

    Executes PFMERGE

    Executes PFMERGE

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

    Permalink

    Executes PING

    Executes PING

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

    Permalink

    Executes PSETEX

    Executes PSETEX

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

    Permalink

    Executes PTTL

    Executes PTTL

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

    Permalink

    Executes RANDOMKEY

    Executes RANDOMKEY

    Definition Classes
    NodeKeysApi
  193. implicit final def recordCodec: RedisRecordCodec[Record]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  194. def rename(key: Key, newkey: Key): Result[Unit]

    Permalink

    Executes RENAME

    Executes RENAME

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

    Permalink

    Executes RENAMENX

    Executes RENAMENX

    Definition Classes
    KeyedKeysApi
  196. def replicaof(newMaster: NodeAddress): Result[Unit]

    Permalink

    Executes REPLICAOF

    Executes REPLICAOF

    Definition Classes
    NodeServerApi
  197. def replicaofNoOne: Result[Unit]

    Permalink

    Executes REPLICAOF

    Executes REPLICAOF

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

    Permalink

    Executes RESTORE

    Executes RESTORE

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

    Permalink

    Executes ROLE

    Executes ROLE

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

    Permalink

    Executes RPOP

    Executes RPOP

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

    Permalink

    Executes RPOPLPUSH

    Executes RPOPLPUSH

    Definition Classes
    ListsApi
  202. 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
  203. def rpush(key: Key, value: Value, values: Value*): Result[Long]

    Permalink

    Executes RPUSH

    Executes RPUSH

    Definition Classes
    ListsApi
  204. 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
  205. def rpushx(key: Key, values: Iterable[Value]): Result[Long]

    Permalink

    Executes RPUSHX

    Executes RPUSHX

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

    Permalink

    Executes RPUSHX

    Executes RPUSHX

    Definition Classes
    ListsApi
  207. 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
  208. 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
  209. def sadd(key: Key, member: Value, members: Value*): Result[Int]

    Permalink

    Executes SADD

    Executes SADD

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

    Permalink

    Executes SADD

    Executes SADD

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

    Permalink

    Executes SAVE

    Executes SAVE

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

    Permalink

    Executes SCAN

    Executes SCAN

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

    Permalink

    Executes SCARD

    Executes SCARD

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

    Permalink

    Executes SCRIPT EXISTS NOTE: hashes CAN be empty, Redis accepts it

    Executes SCRIPT EXISTS NOTE: hashes CAN be empty, Redis accepts it

    Definition Classes
    NodeScriptingApi
  215. def scriptExists(hash: Sha1, hashes: Sha1*): Result[Seq[Boolean]]

    Permalink

    SCRIPT EXISTS

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

    Permalink

    SCRIPT EXISTS

  217. def scriptFlush: Result[Unit]

    Permalink

    Executes SCRIPT FLUSH

    Executes SCRIPT FLUSH

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

    Permalink

    Executes SCRIPT KILL

    Executes SCRIPT KILL

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

    Permalink

    Executes SCRIPT LOAD

    Executes SCRIPT LOAD

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

    Permalink

    Executes SDIFF

    Executes SDIFF

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

    Permalink

    Executes SDIFF

    Executes SDIFF

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

    Permalink

    Executes SDIFFSTORE

    Executes SDIFFSTORE

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

    Permalink

    Executes SDIFFSTORE

    Executes SDIFFSTORE

    Definition Classes
    SetsApi
  224. 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
  225. def setbit(key: Key, offset: Long, value: Boolean): Result[Boolean]

    Permalink

    Executes SETBIT

    Executes SETBIT

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

    Permalink

    Executes SETEX

    Executes SETEX

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

    Permalink

    Executes SETNX

    Executes SETNX

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

    Permalink

    Executes SETRANGE

    Executes SETRANGE

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

    Permalink

    Executes SHUTDOWN

    Executes SHUTDOWN

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

    Permalink

    Executes SHUTDOWN

    Executes SHUTDOWN

    Definition Classes
    NodeServerApi
  231. 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
  232. def sinter(key: Key, keys: Key*): Result[commons.BSet[Value]]

    Permalink

    Executes SINTER

    Executes SINTER

    Definition Classes
    SetsApi
  233. 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
  234. def sinterstore(destination: Key, key: Key, keys: Key*): Result[Long]

    Permalink

    Executes SINTERSTORE

    Executes SINTERSTORE

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

    Permalink

    Executes SISMEMBER

    Executes SISMEMBER

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

    Permalink

    Executes SLAVEOF

    Executes SLAVEOF

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

    Permalink

    Executes SLAVEOF

    Executes SLAVEOF

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

    Permalink

    Executes SLOWLOG

    Executes SLOWLOG

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

    Permalink

    Executes SLOWLOG

    Executes SLOWLOG

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

    Permalink

    Executes SLOWLOG

    Executes SLOWLOG

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

    Permalink

    Executes SLOWLOG

    Executes SLOWLOG

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

    Permalink

    Executes SMEMBERS

    Executes SMEMBERS

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

    Permalink

    Executes SMOVE

    Executes SMOVE

    Definition Classes
    SetsApi
  244. 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
  245. 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
  246. 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
  247. def spop(key: Key, count: Int): Result[commons.BSet[Value]]

    Permalink

    Executes SPOP

    Executes SPOP

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

    Permalink

    Executes SPOP

    Executes SPOP

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

    Permalink

    Executes SRANDMEMBER

    Executes SRANDMEMBER

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

    Permalink

    Executes SRANDMEMBER

    Executes SRANDMEMBER

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

    Permalink

    Executes SRANDMEMBER

    Executes SRANDMEMBER

    Definition Classes
    SetsApi
  252. 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
  253. def srem(key: Key, member: Value, members: Value*): Result[Int]

    Permalink

    Executes SREM

    Executes SREM

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

    Permalink

    Executes SREM

    Executes SREM

    Definition Classes
    SetsApi
  255. 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
  256. def strlen(key: Key): Result[Int]

    Permalink

    Executes STRLEN

    Executes STRLEN

    Definition Classes
    StringsApi
  257. 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
  258. def sunion(key: Key, keys: Key*): Result[commons.BSet[Value]]

    Permalink

    Executes SUNION

    Executes SUNION

    Definition Classes
    SetsApi
  259. 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
  260. def sunionstore(destination: Key, key: Key, keys: Key*): Result[Long]

    Permalink

    Executes SUNIONSTORE

    Executes SUNIONSTORE

    Definition Classes
    SetsApi
  261. def swapdb(first: Int, second: Int): Result[Unit]

    Permalink

    Executes SWAPDB

    Executes SWAPDB

    Definition Classes
    NodeConnectionApi
  262. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink

    Executes TIME

    Executes TIME

    Definition Classes
    NodeServerApi
  264. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  265. 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
  266. def touch(key: Key, keys: Key*): Result[Int]

    Permalink

    Executes TOUCH

    Executes TOUCH

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

    Permalink

    Executes TOUCH

    Executes TOUCH

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

    Permalink

    Executes TTL

    Executes TTL

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

    Permalink

    Executes TYPE

    Executes TYPE

    Definition Classes
    KeyedKeysApi
  270. 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
  271. def unlink(key: Key, keys: Key*): Result[Int]

    Permalink

    Executes UNLINK

    Executes UNLINK

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

    Permalink

    Executes UNLINK

    Executes UNLINK

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

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  274. def wait(numslaves: Int, timeout: Long): Result[Long]

    Permalink

    Executes WAIT

    Executes WAIT

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  278. def xack(key: Key, group: XGroup, ids: Iterable[XEntryId]): Result[Int]

    Permalink

    Executes XACK

    Executes XACK

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

    Permalink

    Executes XACK

    Executes XACK

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

    Permalink

    Executes XACK

    Executes XACK

    Definition Classes
    StreamsApi
  281. 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
  282. def xaddEntry(key: Key, entry: XEntry, maxlen: commons.OptArg[XMaxlen] = OptArg.Empty): Result[XEntryId]

    Permalink

    Executes XADD

    Executes XADD

    Definition Classes
    StreamsApi
  283. 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
  284. 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
  285. 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
  286. def xdel(key: Key, ids: Iterable[XEntryId]): Result[Long]

    Permalink

    Executes XDEL

    Executes XDEL

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

    Permalink

    Executes XDEL

    Executes XDEL

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

    Permalink

    Executes XDEL

    Executes XDEL

    Definition Classes
    StreamsApi
  289. 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
  290. def xgroupDelconsumer(key: Key, group: XGroup, consumer: XConsumer): Result[Boolean]

    Permalink

    Executes XGROUP DELCONSUMER

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

    Permalink

    Executes XGROUP DESTROY

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

    Permalink

    Executes XGROUP SETID

    Executes XGROUP SETID

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

    Permalink

    Executes XINFO CONSUMERS

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

    Permalink

    Executes XINFO GROUPS

    Executes XINFO GROUPS

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

    Permalink

    Executes XINFO STREAM

    Executes XINFO STREAM

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

    Permalink

    Executes XLEN

    Executes XLEN

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

    Permalink

    Executes XPENDING

    Executes XPENDING

    Definition Classes
    StreamsApi
  298. 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
  299. 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
  300. 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
  301. 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
  302. 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
  303. 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
  304. 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
  305. def xtrim(key: Key, maxlen: XMaxlen): Result[Long]

    Permalink

    Executes XTRIM

    Executes XTRIM

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

    Permalink

    Executes XTRIM

    Executes XTRIM

    Definition Classes
    StreamsApi
  307. 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
  308. 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
  309. def zadd(key: Key, score: Double, member: Value, members: Value*): Result[Int]

    Permalink

    Executes ZADD

    Executes ZADD

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

    Permalink

    Executes ZADD

    Executes ZADD

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

    Permalink

    Executes ZADD

    Executes ZADD

    Definition Classes
    SortedSetsApi
  312. 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
  313. def zcard(key: Key): Result[Long]

    Permalink

    Executes ZCARD

    Executes ZCARD

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

    Permalink

    Executes ZCOUNT

    Executes ZCOUNT

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

    Permalink

    Executes ZINCRBY

    Executes ZINCRBY

    Definition Classes
    SortedSetsApi
  316. 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
  317. def zinterstore(destination: Key, key: Key, keys: Key*): Result[Long]

    Permalink

    Executes ZINTERSTORE

    Executes ZINTERSTORE

    Definition Classes
    SortedSetsApi
  318. 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
  319. def zinterstoreWeights(destination: Key, keyWeight: (Key, Double), keysWeights: (Key, Double)*): Result[Long]

    Permalink

    Executes ZINTERSTORE

    Executes ZINTERSTORE

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

    Permalink

    Executes ZLEXCOUNT

    Executes ZLEXCOUNT

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

    Permalink

    Executes ZPOPMAX

    Executes ZPOPMAX

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

    Permalink

    Executes ZPOPMAX

    Executes ZPOPMAX

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

    Permalink

    Executes ZPOPMIN

    Executes ZPOPMIN

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

    Permalink

    Executes ZPOPMIN]

    Executes ZPOPMIN]

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

    Permalink

    Executes ZRANGE

    Executes ZRANGE

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

    Permalink

    Executes ZRANGE

    Executes ZRANGE

    Definition Classes
    SortedSetsApi
  327. 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
  328. 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
  329. 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
  330. def zrank(key: Key, member: Value): Result[commons.Opt[Long]]

    Permalink

    Executes ZRANK

    Executes ZRANK

    Definition Classes
    SortedSetsApi
  331. 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
  332. def zrem(key: Key, member: Value, members: Value*): Result[Int]

    Permalink

    Executes ZREM

    Executes ZREM

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

    Permalink

    Executes ZREM

    Executes ZREM

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

    Permalink

    Executes ZREMRANGEBYLEX

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

    Permalink

    Executes ZREMRANGEBYRANK

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

    Permalink

    Executes ZREMRANGEBYSCORE

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

    Permalink

    Executes ZREVRANGE

    Executes ZREVRANGE

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

    Permalink

    Executes ZREVRANGE

    Executes ZREVRANGE

    Definition Classes
    SortedSetsApi
  339. 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
  340. 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
  341. 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
  342. def zrevrank(key: Key, member: Value): Result[commons.Opt[Long]]

    Permalink

    Executes ZREVRANK

    Executes ZREVRANK

    Definition Classes
    SortedSetsApi
  343. 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
  344. def zscore(key: Key, member: Value): Result[commons.Opt[Double]]

    Permalink

    Executes ZSCORE

    Executes ZSCORE

    Definition Classes
    SortedSetsApi
  345. 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
  346. def zunionstore(destination: Key, key: Key, keys: Key*): Result[Long]

    Permalink

    Executes ZUNIONSTORE

    Executes ZUNIONSTORE

    Definition Classes
    SortedSetsApi
  347. 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
  348. def zunionstoreWeights(destination: Key, keyWeight: (Key, Double), keysWeights: (Key, Double)*): Result[Long]

    Permalink

    Executes ZUNIONSTORE

    Executes ZUNIONSTORE

    Definition Classes
    SortedSetsApi

Inherited from NodeScriptingApi

Inherited from NodeConnectionApi

Inherited from NodeClusterApi

Inherited from NodeServerApi

Inherited from NodeKeysApi

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 ApiSubset

Inherited from AnyRef

Inherited from Any

Ungrouped