Object

com.avsystem.commons.redis.RedisApi.Raw

StringTyped

Related Doc: package Raw

Permalink

object StringTyped extends Raw[String, String, String]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StringTyped
  2. Raw
  3. RedisRawApi
  4. RedisConnectionApi
  5. BlockingListsApi
  6. ConnectionScriptingApi
  7. ConnectionServerApi
  8. ConnectionConnectionApi
  9. ConnectionClusterApi
  10. RedisOperationApi
  11. TransactionApi
  12. RedisNodeApi
  13. NodeScriptingApi
  14. NodeConnectionApi
  15. NodeClusterApi
  16. NodeServerApi
  17. NodeKeysApi
  18. RedisKeyedApi
  19. HyperLogLogApi
  20. SetsApi
  21. ListsApi
  22. SortedSetsApi
  23. HashesApi
  24. KeyedScriptingApi
  25. GeoApi
  26. KeyedClusterApi
  27. StringsApi
  28. KeyedKeysApi
  29. AbstractRedisApi
  30. ApiSubset
  31. AnyRef
  32. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type HashKey = String

    Permalink

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

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

    Definition Classes
    AbstractRedisApiApiSubset
  2. type Input[A] = RedisCommand[A]

    Permalink
    Definition Classes
    RedisRawApiApiSubset
  3. type Key = String

    Permalink

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

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

    Definition Classes
    AbstractRedisApiApiSubset
  4. type Result[A] = RawCommand

    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
    RedisRawApiApiSubset
  5. type Value = String

    Permalink

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

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

    Definition Classes
    AbstractRedisApiApiSubset
  6. type WithHashKey[H0] = Raw[String, H0, String]

    Permalink
    Definition Classes
    AbstractRedisApi
  7. type WithKey[K0] = Raw[K0, String, String]

    Permalink
    Definition Classes
    AbstractRedisApi
  8. type WithValue[V0] = Raw[String, String, V0]

    Permalink
    Definition Classes
    AbstractRedisApi

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def append(key: Key, value: Value): Result[Int]

    Permalink

    APPEND

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

    Permalink
    Definition Classes
    Any
  6. def auth(password: String): Result[Unit]

    Permalink

    AUTH

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

    Permalink

    BGREWRITEAOF

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

    Permalink

    BGSAVE

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

    Permalink

    BGSAVE

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

    Permalink

    BITCOUNT

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

    Permalink

    BITFIELD

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

    Permalink

    BITFIELD

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

    Permalink

    BITFIELD

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

    Permalink

    BITOP

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

    Permalink

    BITOP

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

    Permalink

    BITPOS

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

    Permalink

    BITPOS

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

    Permalink

    BITPOS

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

    Permalink

    BLPOP

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

    Permalink

    BLPOP

    Definition Classes
    BlockingListsApi
  21. def blpop(keys: Iterable[Key]): Result[(Key, Value)]

    Permalink

    BLPOP

    Definition Classes
    BlockingListsApi
  22. def blpop(key: Key, keys: Key*): Result[(Key, Value)]

    Permalink

    BLPOP

    Definition Classes
    BlockingListsApi
  23. def blpop(key: Key): Result[Value]

    Permalink

    BLPOP

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

    Permalink

    BRPOP

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

    Permalink

    BRPOP

    Definition Classes
    BlockingListsApi
  26. def brpop(keys: Iterable[Key]): Result[(Key, Value)]

    Permalink

    BRPOP

    Definition Classes
    BlockingListsApi
  27. def brpop(key: Key, keys: Key*): Result[(Key, Value)]

    Permalink

    BRPOP

    Definition Classes
    BlockingListsApi
  28. def brpop(key: Key): Result[Value]

    Permalink

    BRPOP

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

    Permalink

    BRPOPLPUSH

    Definition Classes
    BlockingListsApi
  30. def brpoplpush(source: Key, destination: Key): Result[Value]

    Permalink

    BRPOPLPUSH

    Definition Classes
    BlockingListsApi
  31. def clientGetname: Result[commons.Opt[String]]

    Permalink

    CLIENT GETNAME

  32. def clientKill(filters: ClientFilter*): Result[Int]

    Permalink

    CLIENT KILL

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

    Permalink

    CLIENT KILL

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

    Permalink

    CLIENT LIST

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

    Permalink

    CLIENT PAUSE

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

    Permalink

    CLIENT SETNAME

  37. def clone(): AnyRef

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

    Permalink

    CLUSTER ADDSLOTS

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

    Permalink

    CLUSTER ADDSLOTS

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

    Permalink

    CLUSTER COUNT-FAILURE-REPORTS

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

    Permalink

    CLUSTER COUNTKEYSINSLOT

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

    Permalink

    CLUSTER DELSLOTS

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

    Permalink

    CLUSTER DELSLOTS

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

    Permalink

    CLUSTER FAILOVER

  45. def clusterFailover: Result[Unit]

    Permalink

    CLUSTER FAILOVER

  46. def clusterFlushslots: Result[Unit]

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

    Permalink

    CLUSTER FORGET

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

    Permalink

    CLUSTER GETKEYSINSLOT

  49. def clusterInfo: Result[ClusterStateInfo]

    Permalink

    CLUSTER INFO

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

    Permalink

    CLUSTER KEYSLOT

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

    Permalink

    CLUSTER MEET

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

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

    Permalink

    CLUSTER NODES

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

    Permalink

    CLUSTER REPLICATE

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

    Permalink

    CLUSTER RESET

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

    Permalink

    CLUSTER RESET

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

    Permalink

    CLUSTER SAVECONFIG

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

    Permalink

    CLUSTER SET-CONFIG-EPOCH

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

    Permalink

    CLUSTER SETSLOT

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

    Permalink

    CLUSTER SLAVES

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

    Permalink

    CLUSTER SLOTS

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

    Permalink

    CLUSTER SLOTS

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

    Permalink

    COMMAND

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

    Permalink

    COMMAND COUNT

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

    Permalink

    COMMAND GETKEYS

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

    Permalink

    COMMAND GETKEYS

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

    Permalink

    COMMAND INFO

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

    Permalink

    COMMAND INFO

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

    Permalink

    COMMAND INFO

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

    Permalink

    CONFIG GET

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

    Permalink

    CONFIG RESETSTAT

  72. def configRewrite: Result[Unit]

    Permalink

    CONFIG REWRITE

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

    Permalink

    CONFIG SET

    Definition Classes
    NodeServerApi
  74. def copy[K, H, V](newKeyCodec: RedisDataCodec[K], newHashKeyCodec: RedisDataCodec[H], newValueCodec: RedisDataCodec[V]): Raw[K, H, V]

    Permalink
    Definition Classes
    RawAbstractRedisApi
  75. def dbsize: Result[Long]

    Permalink

    DBSIZE

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

    Permalink

    DEBUG SEGFAULT

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

    Permalink

    DECR

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

    Permalink

    DECRBY

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

    Permalink

    DEL

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

    Permalink

    DEL

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

    Permalink

    DEL

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

    Permalink

    DUMP

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

    Permalink

    ECHO

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

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

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

    Permalink

    EVAL

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

    Permalink

    EVAL

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

    Permalink

    EVALSHA

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

    Permalink

    EVALSHA

    Definition Classes
    KeyedScriptingApi
  90. def execute[A](command: RedisCommand[A]): RedisCommand[A]

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

    Permalink

    EXISTS

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

    Permalink

    EXISTS

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

    Permalink

    EXISTS

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

    Permalink

    EXPIRE

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

    Permalink

    EXPIREAT

    Definition Classes
    KeyedKeysApi
  96. def finalize(): Unit

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

    Permalink

    FLUSHALL

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

    Permalink

    FLUSHDB

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

    Permalink

    GEOADD

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

    Permalink

    GEOADD

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

    Permalink

    GEOADD

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

    Permalink

    GEODIST

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

    Permalink

    GEOHASH

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

    Permalink

    GEOHASH

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

    Permalink

    GEOHASH

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

    Permalink

    GEOPOS

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

    Permalink

    GEOPOS

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

    Permalink

    GEOPOS

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

    Permalink

    GEORADIUS

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

    Permalink

    GEORADIUS

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

    Permalink

    GEORADIUSBYMEMBER

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

    Permalink

    GEORADIUSBYMEMBER

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

    Permalink

    GET

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

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

    Permalink

    GETBIT

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

    Permalink

    GETRANGE

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

    Permalink

    GETSET

    Definition Classes
    StringsApi
  118. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  119. implicit val hashKeyCodec: RedisDataCodec[String]

    Permalink
    Definition Classes
    AbstractRedisApiApiSubset
  120. def hashKeyType[H0](implicit arg0: RedisDataCodec[H0]): WithHashKey[H0]

    Permalink

    Changes the type of hash key used by this API variant to some other type for which an instance of RedisDataCodec exists.

    Changes the type of hash key used by this API variant to some other type for which an instance of RedisDataCodec exists.

    Definition Classes
    AbstractRedisApi
  121. def hdel(key: Key, fields: Iterable[HashKey]): Result[Int]

    Permalink

    HDEL

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

    Permalink

    HDEL

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

    Permalink

    HDEL

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

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

    Permalink

    HEXISTS

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

    Permalink

    HGET

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

    Permalink

    HGETALL

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

    Permalink

    HINCRBY

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

    Permalink

    HINCRBYFLOAT

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

    Permalink

    HKEYS

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

    Permalink

    HLEN

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

    Permalink

    HMGET

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

    Permalink

    HMGET

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

    Permalink

    HMSET

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

    Permalink

    HMSET

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

    Permalink

    HSCAN

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

    Permalink

    HSET

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

    Permalink

    HSETNX

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

    Permalink

    HSTRLEN

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

    Permalink

    HVALS

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

    Permalink

    INCR

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

    Permalink

    INCRBY

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

    Permalink

    INCRBYFLOAT

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

    Permalink

    INFO

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

    Permalink

    INFO

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  149. implicit val keyCodec: RedisDataCodec[String]

    Permalink
    Definition Classes
    AbstractRedisApiApiSubset
  150. def keySlot(key: Key): Int

    Permalink
    Definition Classes
    KeyedClusterApi
  151. def keyType[K0](implicit arg0: RedisDataCodec[K0]): WithKey[K0]

    Permalink

    Changes the type of key used by this API variant to some other type for which an instance of RedisDataCodec exists.

    Changes the type of key used by this API variant to some other type for which an instance of RedisDataCodec exists.

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

    Permalink

    KEYS

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

    Permalink

    LASTSAVE

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

    Permalink

    LINDEX

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

    Permalink

    LINSERT

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

    Permalink

    LLEN

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

    Permalink

    LPOP

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

    Permalink

    LPUSH

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

    Permalink

    LPUSH

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

    Permalink

    LPUSHX

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

    Permalink

    LRANGE

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

    Permalink

    LREM

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

    Permalink

    LSET

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

    Permalink

    LTRIM

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

    Permalink

    MGET

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

    Permalink

    MGET

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

    Permalink

    MIGRATE

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

    Permalink

    MOVE

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

    Permalink

    MSET

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

    Permalink

    MSET

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

    Permalink

    MSETNX

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

    Permalink

    MSETNX

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

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

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

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

    Permalink

    OBJECT

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

    Permalink

    OBJECT

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

    Permalink

    OBJECT

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

    Permalink

    PERSIST

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

    Permalink

    PEXPIRE

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

    Permalink

    PEXPIREAT

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

    Permalink

    PFADD

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

    Permalink

    PFADD

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

    Permalink

    PFCOUNT

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

    Permalink

    PFCOUNT

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

    Permalink

    PFMERGE

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

    Permalink

    PFMERGE

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

    Permalink

    PING

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

    Permalink

    PSETEX

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

    Permalink

    PTTL

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

    Permalink

    QUIT

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

    Permalink

    RANDOMKEY

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

    Permalink

    READONLY

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

    Permalink

    READWRITE

  195. def rename(key: Key, newkey: Key): Result[Unit]

    Permalink

    RENAME

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

    Permalink

    RENAMENX

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

    Permalink

    RESTORE

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

    Permalink

    ROLE

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

    Permalink

    RPOP

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

    Permalink

    RPOPLPUSH

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

    Permalink

    RPUSH

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

    Permalink

    RPUSH

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

    Permalink

    RPUSHX

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

    Permalink

    SADD

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

    Permalink

    SADD

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

    Permalink

    SADD

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

    Permalink

    SAVE

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

    Permalink

    SCAN

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

    Permalink

    SCARD

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

    Permalink

    SCRIPT DEBUG

  211. def scriptExists(hashes: Iterable[Sha1]): Result[Seq[Boolean]]

    Permalink

    SCRIPT EXISTS

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

    Permalink

    SCRIPT EXISTS

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

    Permalink

    SCRIPT EXISTS

  214. def scriptFlush: Result[Unit]

    Permalink

    SCRIPT FLUSH

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

    Permalink

    SCRIPT KILL

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

    Permalink

    SCRIPT LOAD

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

    Permalink

    SDIFF

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

    Permalink

    SDIFF

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

    Permalink

    SDIFFSTORE

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

    Permalink

    SDIFFSTORE

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

    Permalink

    SELECT

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

    Permalink

    SET

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

    Permalink

    SETBIT

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

    Permalink

    SETEX

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

    Permalink

    SETNX

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

    Permalink

    SETRANGE

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

    Permalink

    SHUTDOWN

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

    Permalink

    SHUTDOWN

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

    Permalink

    SINTER

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

    Permalink

    SINTER

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

    Permalink

    SINTERSTORE

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

    Permalink

    SINTERSTORE

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

    Permalink

    SISMEMBER

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

    Permalink

    SLAVEOF

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

    Permalink

    SLAVEOF

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

    Permalink

    SLOWLOG

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

    Permalink

    SLOWLOG

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

    Permalink

    SLOWLOG

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

    Permalink

    SLOWLOG

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

    Permalink

    SMEMBERS

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

    Permalink

    SMOVE

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

    Permalink

    SORT

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

    Permalink

    SORT

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

    Permalink

    SORT

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

    Permalink

    SPOP

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

    Permalink

    SPOP

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

    Permalink

    SRANDMEMBER

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

    Permalink

    SRANDMEMBER

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

    Permalink

    SRANDMEMBER

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

    Permalink

    SREM

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

    Permalink

    SREM

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

    Permalink

    SREM

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

    Permalink

    SSCAN

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

    Permalink

    STRLEN

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

    Permalink

    SUNION

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

    Permalink

    SUNION

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

    Permalink

    SUNIONSTORE

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

    Permalink

    SUNIONSTORE

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

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

    Permalink

    TIME

    Definition Classes
    NodeServerApi
  261. def toString(): String

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

    Permalink

    TOUCH

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

    Permalink

    TOUCH

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

    Permalink

    TOUCH

    Definition Classes
    KeyedKeysApi
  265. def transformHashKey[H0](read: (String) ⇒ H0)(write: (H0) ⇒ String): WithHashKey[H0]

    Permalink

    Changes the type of hash key used by this API variant to some other type by directly providing functions which convert between new and old type.

    Changes the type of hash key used by this API variant to some other type by directly providing functions which convert between new and old type.

    Definition Classes
    AbstractRedisApi
  266. def transformKey[K0](read: (String) ⇒ K0)(write: (K0) ⇒ String): WithKey[K0]

    Permalink

    Changes the type of key used by this API variant to some other type by directly providing functions which convert between new and old type.

    Changes the type of key used by this API variant to some other type by directly providing functions which convert between new and old type.

    Definition Classes
    AbstractRedisApi
  267. def transformValue[V0](read: (String) ⇒ V0)(write: (V0) ⇒ String): WithValue[V0]

    Permalink

    Changes the type of value used by this API variant to some other type by directly providing functions which convert between new and old type.

    Changes the type of value used by this API variant to some other type by directly providing functions which convert between new and old type.

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

    Permalink

    TTL

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

    Permalink

    TYPE

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

    Permalink

    UNLINK

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

    Permalink

    UNLINK

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

    Permalink

    UNLINK

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

    Permalink

    UNWATCH

    Definition Classes
    TransactionApi
  274. implicit val valueCodec: RedisDataCodec[String]

    Permalink
    Definition Classes
    AbstractRedisApiApiSubset
  275. def valueType[V0](implicit arg0: RedisDataCodec[V0]): WithValue[V0]

    Permalink

    Changes the type of value used by this API variant to some other type for which an instance of RedisDataCodec exists.

    Changes the type of value used by this API variant to some other type for which an instance of RedisDataCodec exists.

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

    Permalink

    WAIT

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

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

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

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

    Permalink

    WATCH

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

    Permalink

    WATCH

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZADD

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

    Permalink

    ZCARD

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

    Permalink

    ZCOUNT

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

    Permalink

    ZINCRBY

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZINTERSTORE

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

    Permalink

    ZLEXCOUNT

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

    Permalink

    ZRANGE

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

    Permalink

    ZRANGE

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

    Permalink

    ZRANGEBYLEX

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

    Permalink

    ZRANGEBYSCORE

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

    Permalink

    ZRANGEBYSCORE

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

    Permalink

    ZRANK

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

    Permalink

    ZREM

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

    Permalink

    ZREM

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

    Permalink

    ZREM

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

    Permalink

    ZREMRANGEBYLEX

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

    Permalink

    ZREMRANGEBYRANK

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

    Permalink

    ZREMRANGEBYSCORE

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

    Permalink

    ZREVRANGE

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

    Permalink

    ZREVRANGE

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

    Permalink

    ZREVRANGEBYLEX

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

    Permalink

    ZREVRANGEBYSCORE

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

    Permalink

    ZREVRANGEBYSCORE

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

    Permalink

    ZREVRANK

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

    Permalink

    ZSCAN

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

    Permalink

    ZSCORE

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

    Permalink

    ZUNIONSTORE

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

    Permalink

    ZUNIONSTORE

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

    Permalink

    ZUNIONSTORE

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

    Permalink

    ZUNIONSTORE

    Definition Classes
    SortedSetsApi

Inherited from Raw[String, String, String]

Inherited from RedisRawApi

Inherited from RedisConnectionApi

Inherited from BlockingListsApi

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 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 AbstractRedisApi[Raw, String, String, String]

Inherited from ApiSubset

Inherited from AnyRef

Inherited from Any

Ungrouped