Trait

com.avsystem.commons.redis

RedisConnectionApi

Related Doc: package redis

Permalink

trait RedisConnectionApi extends RedisOperationApi with ConnectionClusterApi with ConnectionConnectionApi with ConnectionServerApi with ConnectionScriptingApi

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisConnectionApi
  2. ConnectionScriptingApi
  3. ConnectionServerApi
  4. ConnectionConnectionApi
  5. ConnectionClusterApi
  6. RedisOperationApi
  7. TransactionApi
  8. RedisNodeApi
  9. NodeScriptingApi
  10. NodeConnectionApi
  11. NodeClusterApi
  12. NodeServerApi
  13. NodeKeysApi
  14. RedisKeyedApi
  15. StreamsApi
  16. HyperLogLogApi
  17. SetsApi
  18. ListsApi
  19. SortedSetsApi
  20. HashesApi
  21. KeyedScriptingApi
  22. GeoApi
  23. KeyedClusterApi
  24. StringsApi
  25. KeyedKeysApi
  26. ApiSubset
  27. AnyRef
  28. 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 auth(password: String): Result[Unit]

    Permalink

    Executes AUTH

    Executes AUTH

    Definition Classes
    ConnectionConnectionApi
  8. def bgrewriteaof: Result[String]

    Permalink

    Executes BGREWRITEAOF

    Executes BGREWRITEAOF

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

    Permalink

    Executes BGSAVE

    Executes BGSAVE

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

    Permalink

    Executes BGSAVE

    Executes BGSAVE

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

    Permalink

    Executes BITCOUNT

    Executes BITCOUNT

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

    Permalink

    Executes BITFIELD

    Executes BITFIELD

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

    Permalink

    Executes BITFIELD

    Executes BITFIELD

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

    Permalink

    Executes BITFIELD

    Executes BITFIELD

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

    Permalink

    Executes BITOP

    Executes BITOP

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

    Permalink

    Executes BITOP

    Executes BITOP

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

    Permalink

    Executes BITPOS

    Executes BITPOS

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

    Permalink

    Executes BITPOS

    Executes BITPOS

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

    Permalink

    Executes BITPOS

    Executes BITPOS

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

    Permalink

    Executes BLPOP

    Executes BLPOP

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

    Permalink

    Executes BLPOP

    Executes BLPOP

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

    Permalink

    Executes BRPOP

    Executes BRPOP

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

    Permalink

    Executes BRPOP

    Executes BRPOP

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

    Permalink

    Executes BRPOPLPUSH

    Executes BRPOPLPUSH

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

    Permalink

    Executes BZPOPMAX

    Executes BZPOPMAX

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

    Permalink

    Executes BZPOPMAX

    Executes BZPOPMAX

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

    Permalink

    Executes BZPOPMIN

    Executes BZPOPMIN

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

    Permalink

    Executes BZPOPMIN

    Executes BZPOPMIN

    Definition Classes
    SortedSetsApi
  29. def clientGetname: Result[commons.Opt[String]]

    Permalink

    Executes CLIENT GETNAME

    Definition Classes
    ConnectionServerApi
  30. def clientId: Result[ClientId]

    Permalink

    Executes CLIENT ID

    Executes CLIENT ID

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

    Permalink

    Executes CLIENT KILL

    Executes CLIENT KILL

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

    Permalink

    Executes CLIENT KILL

    Executes CLIENT KILL

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

    Permalink

    Executes CLIENT LIST

    Executes CLIENT LIST

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

    Permalink

    Executes CLIENT PAUSE

    Executes CLIENT PAUSE

    Definition Classes
    NodeServerApi
  35. def clientSetname(connectionName: String): Result[Unit]

    Permalink

    Executes CLIENT SETNAME

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

    Permalink

    Executes CLIENT UNBLOCK

    Definition Classes
    NodeServerApi
  37. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. 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
  39. def clusterAddslots(slot: Int, slots: Int*): Result[Unit]

    Permalink

    Executes CLUSTER ADDSLOTS

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

    Permalink

    Executes CLUSTER COUNT-FAILURE-REPORTS

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

    Permalink

    Executes CLUSTER COUNTKEYSINSLOT

    Definition Classes
    NodeClusterApi
  42. 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
  43. def clusterDelslots(slot: Int, slots: Int*): Result[Unit]

    Permalink

    Executes CLUSTER DELSLOTS

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

    Permalink

    Executes CLUSTER FAILOVER

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

    Permalink

    Executes CLUSTER FAILOVER

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

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

    Permalink

    Executes CLUSTER FORGET

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

    Permalink

    Executes CLUSTER GETKEYSINSLOT

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

    Permalink

    Executes CLUSTER INFO

    Executes CLUSTER INFO

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

    Permalink

    Executes CLUSTER KEYSLOT

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

    Permalink

    Executes CLUSTER MEET

    Executes CLUSTER MEET

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

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

    Permalink

    Executes CLUSTER NODES

    Executes CLUSTER NODES

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

    Permalink

    Executes CLUSTER REPLICATE

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

    Permalink

    Executes CLUSTER RESET

    Executes CLUSTER RESET

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

    Permalink

    Executes CLUSTER RESET

    Executes CLUSTER RESET

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

    Permalink

    Executes CLUSTER SAVECONFIG

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

    Permalink

    Executes CLUSTER SET-CONFIG-EPOCH

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

    Permalink

    Executes CLUSTER SETSLOT

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

    Permalink

    Executes CLUSTER SLAVES

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

    Permalink

    Executes CLUSTER SLOTS

    Executes CLUSTER SLOTS

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

    Permalink

    Executes COMMAND

    Executes COMMAND

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

    Permalink

    Executes COMMAND COUNT

    Executes COMMAND COUNT

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

    Permalink

    Executes COMMAND GETKEYS

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

    Permalink

    Executes COMMAND GETKEYS

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

    Permalink

    Executes COMMAND INFO

    Executes COMMAND INFO

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

    Permalink

    Executes COMMAND INFO

    Executes COMMAND INFO

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

    Permalink

    Executes COMMAND INFO

    Executes COMMAND INFO

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

    Permalink

    Executes CONFIG GET

    Executes CONFIG GET

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

    Permalink

    Executes CONFIG RESETSTAT

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

    Permalink

    Executes CONFIG REWRITE

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

    Permalink

    Executes CONFIG SET

    Executes CONFIG SET

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

    Permalink

    Executes DBSIZE

    Executes DBSIZE

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

    Permalink

    Executes DEBUG SEGFAULT

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

    Permalink

    Executes DECR

    Executes DECR

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

    Permalink

    Executes DECRBY

    Executes DECRBY

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

    Permalink

    Executes DEL

    Executes DEL

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

    Permalink

    Executes DEL

    Executes DEL

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

    Permalink

    Executes DUMP

    Executes DUMP

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

    Permalink

    Executes ECHO

    Executes ECHO

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

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

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

    Permalink

    Executes EVAL

    Executes EVAL

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

    Permalink

    Executes EVAL

    Executes EVAL

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

    Permalink

    Executes EVALSHA

    Executes EVALSHA

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

    Permalink

    Executes EVALSHA

    Executes EVALSHA

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

    Permalink

    Executes EXISTS

    Executes EXISTS

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

    Permalink

    Executes EXISTS

    Executes EXISTS

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

    Permalink

    Executes EXPIRE

    Executes EXPIRE

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

    Permalink

    Executes EXPIREAT

    Executes EXPIREAT

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

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

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

    Permalink

    Executes FLUSHALL

    Executes FLUSHALL

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

    Permalink

    Executes FLUSHALL

    Executes FLUSHALL

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

    Permalink

    Executes FLUSHDB

    Executes FLUSHDB

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

    Permalink

    Executes FLUSHDB

    Executes FLUSHDB

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

    Permalink

    Executes GEOADD

    Executes GEOADD

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

    Permalink

    Executes GEOADD

    Executes GEOADD

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

    Permalink

    Executes GEODIST

    Executes GEODIST

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

    Permalink

    Executes GEOHASH

    Executes GEOHASH

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

    Permalink

    Executes GEOPOS

    Executes GEOPOS

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

    Permalink

    Executes GET

    Executes GET

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

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

    Permalink

    Executes GETBIT

    Executes GETBIT

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

    Permalink

    Executes GETRANGE

    Executes GETRANGE

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

    Permalink

    Executes GETSET

    Executes GETSET

    Definition Classes
    StringsApi
  116. def hashCode(): Int

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

    Permalink

    Executes HDEL

    Executes HDEL

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

    Permalink

    Executes HDEL

    Executes HDEL

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

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

    Permalink

    Executes HEXISTS

    Executes HEXISTS

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

    Permalink

    Executes HGET

    Executes HGET

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

    Permalink

    Executes HGETALL

    Executes HGETALL

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

    Permalink

    Executes HGETALL

    Executes HGETALL

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

    Permalink

    Executes HINCRBY

    Executes HINCRBY

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

    Permalink

    Executes HINCRBYFLOAT

    Executes HINCRBYFLOAT

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

    Permalink

    Executes HKEYS

    Executes HKEYS

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

    Permalink

    Executes HLEN

    Executes HLEN

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

    Permalink

    Executes HMGET

    Executes HMGET

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

    Permalink

    Executes HMSET

    Executes HMSET

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

    Permalink

    Executes HSET

    Executes HSET

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

    Permalink

    Executes HSET

    Executes HSET

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

    Permalink

    Executes HSETNX

    Executes HSETNX

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

    Permalink

    Executes HSTRLEN

    Executes HSTRLEN

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

    Permalink

    Executes HVALS

    Executes HVALS

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

    Permalink

    Executes INCR

    Executes INCR

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

    Permalink

    Executes INCRBY

    Executes INCRBY

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

    Permalink

    Executes INCRBYFLOAT

    Executes INCRBYFLOAT

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

    Permalink

    Executes INFO

    Executes INFO

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

    Permalink

    Executes INFO

    Executes INFO

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

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

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

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

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

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

    Permalink

    Executes KEYS

    Executes KEYS

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

    Permalink

    Executes LASTSAVE

    Executes LASTSAVE

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

    Permalink

    Executes LINDEX

    Executes LINDEX

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

    Permalink

    Executes LINSERT

    Executes LINSERT

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

    Permalink

    Executes LLEN

    Executes LLEN

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

    Permalink

    Executes LPOP

    Executes LPOP

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

    Permalink

    Executes LPUSH

    Executes LPUSH

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

    Permalink

    Executes LPUSHX

    Executes LPUSHX

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

    Permalink

    Executes LPUSHX

    Executes LPUSHX

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

    Permalink

    Executes LRANGE

    Executes LRANGE

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

    Permalink

    Executes LREM

    Executes LREM

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

    Permalink

    Executes LSET

    Executes LSET

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

    Permalink

    Executes LTRIM

    Executes LTRIM

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

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

    Permalink

    Executes MGET

    Executes MGET

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

    Permalink

    Executes MOVE

    Executes MOVE

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

    Permalink

    Executes MSET

    Executes MSET

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

    Permalink

    Executes MSETNX

    Executes MSETNX

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

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

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

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

    Permalink

    Executes OBJECT

    Executes OBJECT

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

    Permalink

    Executes OBJECT

    Executes OBJECT

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

    Permalink

    Executes OBJECT

    Executes OBJECT

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

    Permalink

    Executes PERSIST

    Executes PERSIST

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

    Permalink

    Executes PEXPIRE

    Executes PEXPIRE

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

    Permalink

    Executes PEXPIREAT

    Executes PEXPIREAT

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

    Permalink

    Executes PFADD

    Executes PFADD

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

    Permalink

    Executes PFCOUNT

    Executes PFCOUNT

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

    Permalink

    Executes PFMERGE

    Executes PFMERGE

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

    Permalink

    Executes PING

    Executes PING

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

    Permalink

    Executes PSETEX

    Executes PSETEX

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

    Permalink

    Executes PTTL

    Executes PTTL

    Definition Classes
    KeyedKeysApi
  195. def quit: Result[Unit]

    Permalink

    Executes QUIT

    Executes QUIT

    Definition Classes
    ConnectionConnectionApi
  196. def randomkey: Result[commons.Opt[Key]]

    Permalink

    Executes RANDOMKEY

    Executes RANDOMKEY

    Definition Classes
    NodeKeysApi
  197. def readonly: Result[Unit]

    Permalink

    Executes READONLY

    Executes READONLY

    Definition Classes
    ConnectionClusterApi
  198. def readwrite: Result[Unit]

    Permalink

    Executes READWRITE

    Executes READWRITE

    Definition Classes
    ConnectionClusterApi
  199. implicit final def recordCodec: RedisRecordCodec[Record]

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

    Permalink

    Executes RENAME

    Executes RENAME

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

    Permalink

    Executes RENAMENX

    Executes RENAMENX

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

    Permalink

    Executes REPLICAOF

    Executes REPLICAOF

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

    Permalink

    Executes REPLICAOF

    Executes REPLICAOF

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

    Permalink

    Executes RESTORE

    Executes RESTORE

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

    Permalink

    Executes ROLE

    Executes ROLE

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

    Permalink

    Executes RPOP

    Executes RPOP

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

    Permalink

    Executes RPOPLPUSH

    Executes RPOPLPUSH

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

    Permalink

    Executes RPUSH

    Executes RPUSH

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

    Permalink

    Executes RPUSHX

    Executes RPUSHX

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

    Permalink

    Executes RPUSHX

    Executes RPUSHX

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

    Permalink

    Executes SADD

    Executes SADD

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

    Permalink

    Executes SADD

    Executes SADD

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

    Permalink

    Executes SAVE

    Executes SAVE

    Definition Classes
    NodeServerApi
  218. 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
  219. def scard(key: Key): Result[Long]

    Permalink

    Executes SCARD

    Executes SCARD

    Definition Classes
    SetsApi
  220. def scriptDebug(mode: DebugMode): Result[Unit]

    Permalink

    Executes SCRIPT DEBUG

    Executes SCRIPT DEBUG

    Definition Classes
    ConnectionScriptingApi
  221. 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
  222. def scriptExists(hash: Sha1, hashes: Sha1*): Result[Seq[Boolean]]

    Permalink

    SCRIPT EXISTS

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

    Permalink

    SCRIPT EXISTS

  224. def scriptFlush: Result[Unit]

    Permalink

    Executes SCRIPT FLUSH

    Executes SCRIPT FLUSH

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

    Permalink

    Executes SCRIPT KILL

    Executes SCRIPT KILL

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

    Permalink

    Executes SCRIPT LOAD

    Executes SCRIPT LOAD

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

    Permalink

    Executes SDIFF

    Executes SDIFF

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

    Permalink

    Executes SDIFF

    Executes SDIFF

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

    Permalink

    Executes SDIFFSTORE

    Executes SDIFFSTORE

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

    Permalink

    Executes SDIFFSTORE

    Executes SDIFFSTORE

    Definition Classes
    SetsApi
  231. def select(index: Int): Result[Unit]

    Permalink

    Executes SELECT

    Executes SELECT

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

    Permalink

    Executes SETBIT

    Executes SETBIT

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

    Permalink

    Executes SETEX

    Executes SETEX

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

    Permalink

    Executes SETNX

    Executes SETNX

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

    Permalink

    Executes SETRANGE

    Executes SETRANGE

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

    Permalink

    Executes SHUTDOWN

    Executes SHUTDOWN

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

    Permalink

    Executes SHUTDOWN

    Executes SHUTDOWN

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

    Permalink

    Executes SINTER

    Executes SINTER

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

    Permalink

    Executes SINTERSTORE

    Executes SINTERSTORE

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

    Permalink

    Executes SISMEMBER

    Executes SISMEMBER

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

    Permalink

    Executes SLAVEOF

    Executes SLAVEOF

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

    Permalink

    Executes SLAVEOF

    Executes SLAVEOF

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

    Permalink

    Executes SLOWLOG

    Executes SLOWLOG

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

    Permalink

    Executes SLOWLOG

    Executes SLOWLOG

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

    Permalink

    Executes SLOWLOG

    Executes SLOWLOG

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

    Permalink

    Executes SLOWLOG

    Executes SLOWLOG

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

    Permalink

    Executes SMEMBERS

    Executes SMEMBERS

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

    Permalink

    Executes SMOVE

    Executes SMOVE

    Definition Classes
    SetsApi
  252. 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
  253. 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
  254. 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
  255. def spop(key: Key, count: Int): Result[commons.BSet[Value]]

    Permalink

    Executes SPOP

    Executes SPOP

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

    Permalink

    Executes SPOP

    Executes SPOP

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

    Permalink

    Executes SRANDMEMBER

    Executes SRANDMEMBER

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

    Permalink

    Executes SRANDMEMBER

    Executes SRANDMEMBER

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

    Permalink

    Executes SRANDMEMBER

    Executes SRANDMEMBER

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

    Permalink

    Executes SREM

    Executes SREM

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

    Permalink

    Executes SREM

    Executes SREM

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

    Permalink

    Executes STRLEN

    Executes STRLEN

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

    Permalink

    Executes SUNION

    Executes SUNION

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

    Permalink

    Executes SUNIONSTORE

    Executes SUNIONSTORE

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

    Permalink

    Executes SWAPDB

    Executes SWAPDB

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

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

    Permalink

    Executes TIME

    Executes TIME

    Definition Classes
    NodeServerApi
  272. def toString(): String

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

    Permalink

    Executes TOUCH

    Executes TOUCH

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

    Permalink

    Executes TOUCH

    Executes TOUCH

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

    Permalink

    Executes TTL

    Executes TTL

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

    Permalink

    Executes TYPE

    Executes TYPE

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

    Permalink

    Executes UNLINK

    Executes UNLINK

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

    Permalink

    Executes UNLINK

    Executes UNLINK

    Definition Classes
    KeyedKeysApi
  281. def unwatch: Result[Unit]

    Permalink

    Executes UNWATCH

    Executes UNWATCH

    Definition Classes
    TransactionApi
  282. implicit final def valueCodec: RedisDataCodec[Value]

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

    Permalink

    Executes WAIT

    Executes WAIT

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  287. def watch(keys: Iterable[Key]): Result[Unit]

    Permalink

    Executes WATCH or does nothing when keys is empty, without sending the command to Redis

    Executes WATCH or does nothing when keys is empty, without sending the command to Redis

    Definition Classes
    TransactionApi
  288. def watch(key: Key, keys: Key*): Result[Unit]

    Permalink

    Executes WATCH

    Executes WATCH

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

    Permalink

    Executes XACK

    Executes XACK

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

    Permalink

    Executes XACK

    Executes XACK

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

    Permalink

    Executes XACK

    Executes XACK

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

    Permalink

    Executes XADD

    Executes XADD

    Definition Classes
    StreamsApi
  294. 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
  295. 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
  296. 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
  297. def xdel(key: Key, ids: Iterable[XEntryId]): Result[Long]

    Permalink

    Executes XDEL

    Executes XDEL

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

    Permalink

    Executes XDEL

    Executes XDEL

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

    Permalink

    Executes XDEL

    Executes XDEL

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

    Permalink

    Executes XGROUP DELCONSUMER

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

    Permalink

    Executes XGROUP DESTROY

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

    Permalink

    Executes XGROUP SETID

    Executes XGROUP SETID

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

    Permalink

    Executes XINFO CONSUMERS

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

    Permalink

    Executes XINFO GROUPS

    Executes XINFO GROUPS

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

    Permalink

    Executes XINFO STREAM

    Executes XINFO STREAM

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

    Permalink

    Executes XLEN

    Executes XLEN

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

    Permalink

    Executes XPENDING

    Executes XPENDING

    Definition Classes
    StreamsApi
  309. 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
  310. 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
  311. 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
  312. 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
  313. 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
  314. 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
  315. 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
  316. def xtrim(key: Key, maxlen: XMaxlen): Result[Long]

    Permalink

    Executes XTRIM

    Executes XTRIM

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

    Permalink

    Executes XTRIM

    Executes XTRIM

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

    Permalink

    Executes ZADD

    Executes ZADD

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

    Permalink

    Executes ZADD

    Executes ZADD

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

    Permalink

    Executes ZADD

    Executes ZADD

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

    Permalink

    Executes ZCARD

    Executes ZCARD

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

    Permalink

    Executes ZCOUNT

    Executes ZCOUNT

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

    Permalink

    Executes ZINCRBY

    Executes ZINCRBY

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

    Permalink

    Executes ZINTERSTORE

    Executes ZINTERSTORE

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

    Permalink

    Executes ZINTERSTORE

    Executes ZINTERSTORE

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

    Permalink

    Executes ZLEXCOUNT

    Executes ZLEXCOUNT

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

    Permalink

    Executes ZPOPMAX

    Executes ZPOPMAX

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

    Permalink

    Executes ZPOPMAX

    Executes ZPOPMAX

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

    Permalink

    Executes ZPOPMIN

    Executes ZPOPMIN

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

    Permalink

    Executes ZPOPMIN]

    Executes ZPOPMIN]

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

    Permalink

    Executes ZRANGE

    Executes ZRANGE

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

    Permalink

    Executes ZRANGE

    Executes ZRANGE

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

    Permalink

    Executes ZRANK

    Executes ZRANK

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

    Permalink

    Executes ZREM

    Executes ZREM

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

    Permalink

    Executes ZREM

    Executes ZREM

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

    Permalink

    Executes ZREMRANGEBYLEX

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

    Permalink

    Executes ZREMRANGEBYRANK

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

    Permalink

    Executes ZREMRANGEBYSCORE

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

    Permalink

    Executes ZREVRANGE

    Executes ZREVRANGE

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

    Permalink

    Executes ZREVRANGE

    Executes ZREVRANGE

    Definition Classes
    SortedSetsApi
  350. 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
  351. 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
  352. 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
  353. def zrevrank(key: Key, member: Value): Result[commons.Opt[Long]]

    Permalink

    Executes ZREVRANK

    Executes ZREVRANK

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

    Permalink

    Executes ZSCORE

    Executes ZSCORE

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

    Permalink

    Executes ZUNIONSTORE

    Executes ZUNIONSTORE

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

    Permalink

    Executes ZUNIONSTORE

    Executes ZUNIONSTORE

    Definition Classes
    SortedSetsApi

Inherited from ConnectionScriptingApi

Inherited from ConnectionServerApi

Inherited from ConnectionConnectionApi

Inherited from ConnectionClusterApi

Inherited from RedisOperationApi

Inherited from TransactionApi

Inherited from RedisNodeApi

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