Packages

trait RedisCommands[F[_], K, V] extends StringCommands[F, K, V] with HashCommands[F, K, V] with SetCommands[F, K, V] with SortedSetCommands[F, K, V] with ListCommands[F, K, V] with GeoCommands[F, K, V] with ConnectionCommands[F] with ServerCommands[F, K] with TransactionalCommands[F, K] with PipelineCommands[F] with ScriptCommands[F, K, V] with KeyCommands[F, K] with HyperLogLogCommands[F, K, V]

Linear Supertypes
HyperLogLogCommands[F, K, V], KeyCommands[F, K], ScriptCommands[F, K, V], Scripting[F, K, V], PipelineCommands[F], AutoFlush[F], TransactionalCommands[F, K], Watcher[F, K], Transaction[F], ServerCommands[F, K], Diagnostic[F], Flush[F, K], ConnectionCommands[F], Auth[F], Ping[F], GeoCommands[F, K, V], GeoSetter[F, K, V], GeoGetter[F, K, V], ListCommands[F, K, V], ListPushPop[F, K, V], ListSetter[F, K, V], ListGetter[F, K, V], ListBlocking[F, K, V], SortedSetCommands[F, K, V], SortedSetSetter[F, K, V], SortedSetGetter[F, K, V], SetCommands[F, K, V], SetDeletion[F, K, V], SetSetter[F, K, V], SetGetter[F, K, V], HashCommands[F, K, V], HashIncrement[F, K, V], HashSetter[F, K, V], HashGetter[F, K, V], StringCommands[F, K, V], Bits[F, K, V], Increment[F, K, V], Decrement[F, K, V], MultiKey[F, K, V], Setter[F, K, V], Getter[F, K, V], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisCommands
  2. HyperLogLogCommands
  3. KeyCommands
  4. ScriptCommands
  5. Scripting
  6. PipelineCommands
  7. AutoFlush
  8. TransactionalCommands
  9. Watcher
  10. Transaction
  11. ServerCommands
  12. Diagnostic
  13. Flush
  14. ConnectionCommands
  15. Auth
  16. Ping
  17. GeoCommands
  18. GeoSetter
  19. GeoGetter
  20. ListCommands
  21. ListPushPop
  22. ListSetter
  23. ListGetter
  24. ListBlocking
  25. SortedSetCommands
  26. SortedSetSetter
  27. SortedSetGetter
  28. SetCommands
  29. SetDeletion
  30. SetSetter
  31. SetGetter
  32. HashCommands
  33. HashIncrement
  34. HashSetter
  35. HashGetter
  36. StringCommands
  37. Bits
  38. Increment
  39. Decrement
  40. MultiKey
  41. Setter
  42. Getter
  43. AnyRef
  44. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def append(key: K, value: V): F[Unit]
    Definition Classes
    Setter
  2. abstract def auth(username: String, password: CharSequence): F[Boolean]
    Definition Classes
    Auth
  3. abstract def auth(password: CharSequence): F[Boolean]
    Definition Classes
    Auth
  4. abstract def bitCount(key: K, start: Long, end: Long): F[Long]
    Definition Classes
    Bits
  5. abstract def bitCount(key: K): F[Long]
    Definition Classes
    Bits
  6. abstract def bitOpAnd(destination: K, sources: K*): F[Unit]
    Definition Classes
    Bits
  7. abstract def bitOpNot(destination: K, source: K): F[Unit]
    Definition Classes
    Bits
  8. abstract def bitOpOr(destination: K, sources: K*): F[Unit]
    Definition Classes
    Bits
  9. abstract def bitOpXor(destination: K, sources: K*): F[Unit]
    Definition Classes
    Bits
  10. abstract def bitPos(key: K, state: Boolean, start: Long, end: Long): F[Long]
    Definition Classes
    Bits
  11. abstract def bitPos(key: K, state: Boolean, start: Long): F[Long]
    Definition Classes
    Bits
  12. abstract def bitPos(key: K, state: Boolean): F[Long]
    Definition Classes
    Bits
  13. abstract def blPop(timeout: Duration, keys: NonEmptyList[K]): F[Option[(K, V)]]
    Definition Classes
    ListBlocking
  14. abstract def brPop(timeout: Duration, keys: NonEmptyList[K]): F[Option[(K, V)]]
    Definition Classes
    ListBlocking
  15. abstract def brPopLPush(timeout: Duration, source: K, destination: K): F[Option[V]]
    Definition Classes
    ListBlocking
  16. abstract def bzPopMax(timeout: Duration, keys: NonEmptyList[K]): F[Option[(K, ScoreWithValue[V])]]
    Definition Classes
    SortedSetGetter
  17. abstract def bzPopMin(timeout: Duration, keys: NonEmptyList[K]): F[Option[(K, ScoreWithValue[V])]]
    Definition Classes
    SortedSetGetter
  18. abstract def dbsize: F[Long]
    Definition Classes
    Diagnostic
  19. abstract def decr(key: K)(implicit N: Numeric[V]): F[Long]
    Definition Classes
    Decrement
  20. abstract def decrBy(key: K, amount: Long)(implicit N: Numeric[V]): F[Long]
    Definition Classes
    Decrement
  21. abstract def del(key: K*): F[Long]
    Definition Classes
    KeyCommands
  22. abstract def digest(script: String): F[String]
    Definition Classes
    Scripting
  23. abstract def disableAutoFlush: F[Unit]
    Definition Classes
    AutoFlush
  24. abstract def discard: F[Unit]
    Definition Classes
    Transaction
  25. abstract def enableAutoFlush: F[Unit]
    Definition Classes
    AutoFlush
  26. abstract def eval(script: String, output: ScriptOutputType[V], keys: List[K], values: List[V]): F[R]
    Definition Classes
    Scripting
  27. abstract def eval(script: String, output: ScriptOutputType[V], keys: List[K]): F[R]
    Definition Classes
    Scripting
  28. abstract def eval(script: String, output: ScriptOutputType[V]): F[R]
    Definition Classes
    Scripting
  29. abstract def evalSha(digest: String, output: ScriptOutputType[V], keys: List[K], values: List[V]): F[R]
    Definition Classes
    Scripting
  30. abstract def evalSha(digest: String, output: ScriptOutputType[V], keys: List[K]): F[R]
    Definition Classes
    Scripting
  31. abstract def evalSha(digest: String, output: ScriptOutputType[V]): F[R]
    Definition Classes
    Scripting
  32. abstract def exec: F[Unit]
    Definition Classes
    Transaction
  33. abstract def exists(key: K*): F[Boolean]
    Definition Classes
    KeyCommands
  34. abstract def expire(key: K, expiresIn: FiniteDuration): F[Boolean]
    Definition Classes
    KeyCommands
  35. abstract def expireAt(key: K, at: Instant): F[Boolean]
    Definition Classes
    KeyCommands
  36. abstract def flushAll: F[Unit]
    Definition Classes
    Flush
  37. abstract def flushAllAsync: F[Unit]
    Definition Classes
    Flush
  38. abstract def flushCommands: F[Unit]
    Definition Classes
    AutoFlush
  39. abstract def geoAdd(key: K, geoValues: GeoLocation[V]*): F[Unit]
    Definition Classes
    GeoSetter
  40. abstract def geoDist(key: K, from: V, to: V, unit: Unit): F[Double]
    Definition Classes
    GeoGetter
  41. abstract def geoHash(key: K, values: V*): F[List[Option[String]]]
    Definition Classes
    GeoGetter
  42. abstract def geoPos(key: K, values: V*): F[List[GeoCoordinate]]
    Definition Classes
    GeoGetter
  43. abstract def geoRadius(key: K, geoRadius: GeoRadius, unit: Unit, storage: GeoRadiusDistStorage[K]): F[Unit]
    Definition Classes
    GeoSetter
  44. abstract def geoRadius(key: K, geoRadius: GeoRadius, unit: Unit, storage: GeoRadiusKeyStorage[K]): F[Unit]
    Definition Classes
    GeoSetter
  45. abstract def geoRadius(key: K, geoRadius: GeoRadius, unit: Unit, args: GeoArgs): F[List[GeoRadiusResult[V]]]
    Definition Classes
    GeoGetter
  46. abstract def geoRadius(key: K, geoRadius: GeoRadius, unit: Unit): F[Set[V]]
    Definition Classes
    GeoGetter
  47. abstract def geoRadiusByMember(key: K, value: V, dist: Distance, unit: Unit, storage: GeoRadiusDistStorage[K]): F[Unit]
    Definition Classes
    GeoSetter
  48. abstract def geoRadiusByMember(key: K, value: V, dist: Distance, unit: Unit, storage: GeoRadiusKeyStorage[K]): F[Unit]
    Definition Classes
    GeoSetter
  49. abstract def geoRadiusByMember(key: K, value: V, dist: Distance, unit: Unit, args: GeoArgs): F[List[GeoRadiusResult[V]]]
    Definition Classes
    GeoGetter
  50. abstract def geoRadiusByMember(key: K, value: V, dist: Distance, unit: Unit): F[Set[V]]
    Definition Classes
    GeoGetter
  51. abstract def get(key: K): F[Option[V]]
    Definition Classes
    Getter
  52. abstract def getBit(key: K, offset: Long): F[Option[Long]]
    Definition Classes
    Getter
  53. abstract def getRange(key: K, start: Long, end: Long): F[Option[V]]
    Definition Classes
    Getter
  54. abstract def getSet(key: K, value: V): F[Option[V]]
    Definition Classes
    Setter
  55. abstract def hDel(key: K, fields: K*): F[Long]
    Definition Classes
    HashCommands
  56. abstract def hExists(key: K, field: K): F[Boolean]
    Definition Classes
    HashCommands
  57. abstract def hGet(key: K, field: K): F[Option[V]]
    Definition Classes
    HashGetter
  58. abstract def hGetAll(key: K): F[Map[K, V]]
    Definition Classes
    HashGetter
  59. abstract def hIncrBy(key: K, field: K, amount: Long)(implicit N: Numeric[V]): F[Long]
    Definition Classes
    HashIncrement
  60. abstract def hIncrByFloat(key: K, field: K, amount: Double)(implicit N: Numeric[V]): F[Double]
    Definition Classes
    HashIncrement
  61. abstract def hKeys(key: K): F[List[K]]
    Definition Classes
    HashGetter
  62. abstract def hLen(key: K): F[Option[Long]]
    Definition Classes
    HashGetter
  63. abstract def hSet(key: K, field: K, value: V): F[Boolean]
    Definition Classes
    HashSetter
  64. abstract def hSetNx(key: K, field: K, value: V): F[Boolean]
    Definition Classes
    HashSetter
  65. abstract def hStrLen(key: K, field: K): F[Option[Long]]
    Definition Classes
    HashGetter
  66. abstract def hVals(key: K): F[List[V]]
    Definition Classes
    HashGetter
  67. abstract def hmGet(key: K, fields: K*): F[Map[K, V]]
    Definition Classes
    HashGetter
  68. abstract def hmSet(key: K, fieldValues: Map[K, V]): F[Unit]
    Definition Classes
    HashSetter
  69. abstract def incr(key: K)(implicit N: Numeric[V]): F[Long]
    Definition Classes
    Increment
  70. abstract def incrBy(key: K, amount: Long)(implicit N: Numeric[V]): F[Long]
    Definition Classes
    Increment
  71. abstract def incrByFloat(key: K, amount: Double)(implicit N: Numeric[V]): F[Double]
    Definition Classes
    Increment
  72. abstract def info: F[Map[String, String]]
    Definition Classes
    Diagnostic
  73. abstract def keys(key: K): F[List[K]]
    Definition Classes
    Flush
  74. abstract def lIndex(key: K, index: Long): F[Option[V]]
    Definition Classes
    ListGetter
  75. abstract def lInsertAfter(key: K, pivot: V, value: V): F[Long]
    Definition Classes
    ListSetter
  76. abstract def lInsertBefore(key: K, pivot: V, value: V): F[Long]
    Definition Classes
    ListSetter
  77. abstract def lLen(key: K): F[Option[Long]]
    Definition Classes
    ListGetter
  78. abstract def lPop(key: K): F[Option[V]]
    Definition Classes
    ListPushPop
  79. abstract def lPush(key: K, values: V*): F[Long]
    Definition Classes
    ListPushPop
  80. abstract def lPushX(key: K, values: V*): F[Long]
    Definition Classes
    ListPushPop
  81. abstract def lRange(key: K, start: Long, stop: Long): F[List[V]]
    Definition Classes
    ListGetter
  82. abstract def lRem(key: K, count: Long, value: V): F[Long]
    Definition Classes
    ListSetter
  83. abstract def lSet(key: K, index: Long, value: V): F[Unit]
    Definition Classes
    ListSetter
  84. abstract def lTrim(key: K, start: Long, stop: Long): F[Unit]
    Definition Classes
    ListSetter
  85. abstract def lastSave: F[Instant]
    Definition Classes
    Diagnostic
  86. abstract def mGet(keys: Set[K]): F[Map[K, V]]
    Definition Classes
    MultiKey
  87. abstract def mSet(keyValues: Map[K, V]): F[Unit]
    Definition Classes
    MultiKey
  88. abstract def mSetNx(keyValues: Map[K, V]): F[Boolean]
    Definition Classes
    MultiKey
  89. abstract def multi: F[Unit]
    Definition Classes
    Transaction
  90. abstract def objectIdletime(key: K): F[Option[FiniteDuration]]
    Definition Classes
    KeyCommands
  91. abstract def pfAdd(key: K, values: V*): F[Long]
    Definition Classes
    HyperLogLogCommands
  92. abstract def pfCount(key: K): F[Long]
    Definition Classes
    HyperLogLogCommands
  93. abstract def pfMerge(outputKey: K, inputKeys: K*): F[Unit]
    Definition Classes
    HyperLogLogCommands
  94. abstract def ping: F[String]
    Definition Classes
    Ping
  95. abstract def pttl(key: K): F[Option[FiniteDuration]]
    Definition Classes
    KeyCommands
  96. abstract def rPop(key: K): F[Option[V]]
    Definition Classes
    ListPushPop
  97. abstract def rPopLPush(source: K, destination: K): F[Option[V]]
    Definition Classes
    ListPushPop
  98. abstract def rPush(key: K, values: V*): F[Long]
    Definition Classes
    ListPushPop
  99. abstract def rPushX(key: K, values: V*): F[Long]
    Definition Classes
    ListPushPop
  100. abstract def sAdd(key: K, values: V*): F[Long]
    Definition Classes
    SetSetter
  101. abstract def sCard(key: K): F[Long]
    Definition Classes
    SetGetter
  102. abstract def sDiff(keys: K*): F[Set[V]]
    Definition Classes
    SetGetter
  103. abstract def sDiffStore(destination: K, keys: K*): F[Long]
    Definition Classes
    SetSetter
  104. abstract def sInter(keys: K*): F[Set[V]]
    Definition Classes
    SetGetter
  105. abstract def sInterStore(destination: K, keys: K*): F[Long]
    Definition Classes
    SetSetter
  106. abstract def sIsMember(key: K, value: V): F[Boolean]
    Definition Classes
    SetCommands
  107. abstract def sMembers(key: K): F[Set[V]]
    Definition Classes
    SetGetter
  108. abstract def sMove(source: K, destination: K, value: V): F[Boolean]
    Definition Classes
    SetSetter
  109. abstract def sPop(key: K, count: Long): F[Set[V]]
    Definition Classes
    SetDeletion
  110. abstract def sPop(key: K): F[Option[V]]
    Definition Classes
    SetDeletion
  111. abstract def sRandMember(key: K, count: Long): F[List[V]]
    Definition Classes
    SetGetter
  112. abstract def sRandMember(key: K): F[Option[V]]
    Definition Classes
    SetGetter
  113. abstract def sRem(key: K, values: V*): F[Unit]
    Definition Classes
    SetDeletion
  114. abstract def sUnion(keys: K*): F[Set[V]]
    Definition Classes
    SetGetter
  115. abstract def sUnionStore(destination: K, keys: K*): F[Unit]
    Definition Classes
    SetGetter
  116. abstract def scan(previous: KeyScanCursor[K], scanArgs: ScanArgs): F[KeyScanCursor[K]]
    Definition Classes
    KeyCommands
  117. abstract def scan(scanArgs: ScanArgs): F[KeyScanCursor[K]]
    Definition Classes
    KeyCommands
  118. abstract def scan(previous: KeyScanCursor[K]): F[KeyScanCursor[K]]
    Definition Classes
    KeyCommands
  119. abstract def scan: F[KeyScanCursor[K]]
    Definition Classes
    KeyCommands
  120. abstract def scriptExists(digests: String*): F[List[Boolean]]
    Definition Classes
    Scripting
  121. abstract def scriptFlush: F[Unit]
    Definition Classes
    Scripting
  122. abstract def scriptLoad(script: Array[Byte]): F[String]
    Definition Classes
    Scripting
  123. abstract def scriptLoad(script: String): F[String]
    Definition Classes
    Scripting
  124. abstract def select(index: Int): F[Unit]
    Definition Classes
    Ping
  125. abstract def set(key: K, value: V, setArgs: SetArgs): F[Boolean]
    Definition Classes
    Setter
  126. abstract def set(key: K, value: V): F[Unit]
    Definition Classes
    Setter
  127. abstract def setEx(key: K, value: V, expiresIn: FiniteDuration): F[Unit]
    Definition Classes
    Setter
  128. abstract def setNx(key: K, value: V): F[Boolean]
    Definition Classes
    Setter
  129. abstract def setRange(key: K, value: V, offset: Long): F[Unit]
    Definition Classes
    Setter
  130. abstract def slowLogLen: F[Long]
    Definition Classes
    Diagnostic
  131. abstract def strLen(key: K): F[Option[Long]]
    Definition Classes
    Getter
  132. abstract def ttl(key: K): F[Option[FiniteDuration]]
    Definition Classes
    KeyCommands
  133. abstract def unwatch: F[Unit]
    Definition Classes
    Watcher
  134. abstract def watch(keys: K*): F[Unit]
    Definition Classes
    Watcher
  135. abstract def zAdd(key: K, args: Option[ZAddArgs], values: ScoreWithValue[V]*): F[Long]
    Definition Classes
    SortedSetSetter
  136. abstract def zAddIncr(key: K, args: Option[ZAddArgs], value: ScoreWithValue[V]): F[Double]
    Definition Classes
    SortedSetSetter
  137. abstract def zCard(key: K): F[Option[Long]]
    Definition Classes
    SortedSetGetter
  138. abstract def zCount[T](key: K, range: ZRange[T])(implicit arg0: Numeric[T]): F[Option[Long]]
    Definition Classes
    SortedSetGetter
  139. abstract def zIncrBy(key: K, member: V, amount: Double): F[Double]
    Definition Classes
    SortedSetSetter
  140. abstract def zInterStore(destination: K, args: Option[ZStoreArgs], keys: K*): F[Long]
    Definition Classes
    SortedSetSetter
  141. abstract def zLexCount(key: K, range: ZRange[V]): F[Option[Long]]
    Definition Classes
    SortedSetGetter
  142. abstract def zPopMax(key: K, count: Long): F[List[ScoreWithValue[V]]]
    Definition Classes
    SortedSetGetter
  143. abstract def zPopMin(key: K, count: Long): F[List[ScoreWithValue[V]]]
    Definition Classes
    SortedSetGetter
  144. abstract def zRange(key: K, start: Long, stop: Long): F[List[V]]
    Definition Classes
    SortedSetGetter
  145. abstract def zRangeByLex(key: K, range: ZRange[V], limit: Option[RangeLimit]): F[List[V]]
    Definition Classes
    SortedSetGetter
  146. abstract def zRangeByScore[T](key: K, range: ZRange[T], limit: Option[RangeLimit])(implicit arg0: Numeric[T]): F[List[V]]
    Definition Classes
    SortedSetGetter
  147. abstract def zRangeByScoreWithScores[T](key: K, range: ZRange[T], limit: Option[RangeLimit])(implicit arg0: Numeric[T]): F[List[ScoreWithValue[V]]]
    Definition Classes
    SortedSetGetter
  148. abstract def zRangeWithScores(key: K, start: Long, stop: Long): F[List[ScoreWithValue[V]]]
    Definition Classes
    SortedSetGetter
  149. abstract def zRank(key: K, value: V): F[Option[Long]]
    Definition Classes
    SortedSetGetter
  150. abstract def zRem(key: K, values: V*): F[Long]
    Definition Classes
    SortedSetSetter
  151. abstract def zRemRangeByLex(key: K, range: ZRange[V]): F[Long]
    Definition Classes
    SortedSetSetter
  152. abstract def zRemRangeByRank(key: K, start: Long, stop: Long): F[Long]
    Definition Classes
    SortedSetSetter
  153. abstract def zRemRangeByScore[T](key: K, range: ZRange[T])(implicit arg0: Numeric[T]): F[Long]
    Definition Classes
    SortedSetSetter
  154. abstract def zRevRange(key: K, start: Long, stop: Long): F[List[V]]
    Definition Classes
    SortedSetGetter
  155. abstract def zRevRangeByLex(key: K, range: ZRange[V], limit: Option[RangeLimit]): F[List[V]]
    Definition Classes
    SortedSetGetter
  156. abstract def zRevRangeByScore[T](key: K, range: ZRange[T], limit: Option[RangeLimit])(implicit arg0: Numeric[T]): F[List[V]]
    Definition Classes
    SortedSetGetter
  157. abstract def zRevRangeByScoreWithScores[T](key: K, range: ZRange[T], limit: Option[RangeLimit])(implicit arg0: Numeric[T]): F[List[ScoreWithValue[V]]]
    Definition Classes
    SortedSetGetter
  158. abstract def zRevRangeWithScores(key: K, start: Long, stop: Long): F[List[ScoreWithValue[V]]]
    Definition Classes
    SortedSetGetter
  159. abstract def zRevRank(key: K, value: V): F[Option[Long]]
    Definition Classes
    SortedSetGetter
  160. abstract def zScore(key: K, value: V): F[Option[Double]]
    Definition Classes
    SortedSetGetter
  161. abstract def zUnionStore(destination: K, args: Option[ZStoreArgs], keys: K*): F[Long]
    Definition Classes
    SortedSetSetter
  162. abstract def scan(cursor: Long, scanArgs: ScanArgs): F[KeyScanCursor[K]]
    Definition Classes
    KeyCommands
    Annotations
    @deprecated
    Deprecated

    (Since version 0.10.4) In favor of scan(cursor: KeyScanCursor[K], scanArgs: ScanArgs)

  163. abstract def scan(cursor: Long): F[KeyScanCursor[K]]
    Definition Classes
    KeyCommands
    Annotations
    @deprecated
    Deprecated

    (Since version 0.10.4) In favor of scan(cursor: KeyScanCursor[K])

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from RedisCommands[F, K, V] to any2stringadd[RedisCommands[F, K, V]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (RedisCommands[F, K, V], B)
    Implicit
    This member is added by an implicit conversion from RedisCommands[F, K, V] to ArrowAssoc[RedisCommands[F, K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  8. def ensuring(cond: (RedisCommands[F, K, V]) ⇒ Boolean, msg: ⇒ Any): RedisCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from RedisCommands[F, K, V] to Ensuring[RedisCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (RedisCommands[F, K, V]) ⇒ Boolean): RedisCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from RedisCommands[F, K, V] to Ensuring[RedisCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): RedisCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from RedisCommands[F, K, V] to Ensuring[RedisCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): RedisCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from RedisCommands[F, K, V] to Ensuring[RedisCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from RedisCommands[F, K, V] to StringFormat[RedisCommands[F, K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def [B](y: B): (RedisCommands[F, K, V], B)
    Implicit
    This member is added by an implicit conversion from RedisCommands[F, K, V] to ArrowAssoc[RedisCommands[F, K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from HyperLogLogCommands[F, K, V]

Inherited from KeyCommands[F, K]

Inherited from ScriptCommands[F, K, V]

Inherited from Scripting[F, K, V]

Inherited from PipelineCommands[F]

Inherited from AutoFlush[F]

Inherited from TransactionalCommands[F, K]

Inherited from Watcher[F, K]

Inherited from Transaction[F]

Inherited from ServerCommands[F, K]

Inherited from Diagnostic[F]

Inherited from Flush[F, K]

Inherited from ConnectionCommands[F]

Inherited from Auth[F]

Inherited from Ping[F]

Inherited from GeoCommands[F, K, V]

Inherited from GeoSetter[F, K, V]

Inherited from GeoGetter[F, K, V]

Inherited from ListCommands[F, K, V]

Inherited from ListPushPop[F, K, V]

Inherited from ListSetter[F, K, V]

Inherited from ListGetter[F, K, V]

Inherited from ListBlocking[F, K, V]

Inherited from SortedSetCommands[F, K, V]

Inherited from SortedSetSetter[F, K, V]

Inherited from SortedSetGetter[F, K, V]

Inherited from SetCommands[F, K, V]

Inherited from SetDeletion[F, K, V]

Inherited from SetSetter[F, K, V]

Inherited from SetGetter[F, K, V]

Inherited from HashCommands[F, K, V]

Inherited from HashIncrement[F, K, V]

Inherited from HashSetter[F, K, V]

Inherited from HashGetter[F, K, V]

Inherited from StringCommands[F, K, V]

Inherited from Bits[F, K, V]

Inherited from Increment[F, K, V]

Inherited from Decrement[F, K, V]

Inherited from MultiKey[F, K, V]

Inherited from Setter[F, K, V]

Inherited from Getter[F, K, V]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from RedisCommands[F, K, V] to any2stringadd[RedisCommands[F, K, V]]

Inherited by implicit conversion StringFormat from RedisCommands[F, K, V] to StringFormat[RedisCommands[F, K, V]]

Inherited by implicit conversion Ensuring from RedisCommands[F, K, V] to Ensuring[RedisCommands[F, K, V]]

Inherited by implicit conversion ArrowAssoc from RedisCommands[F, K, V] to ArrowAssoc[RedisCommands[F, K, V]]

Ungrouped