Package

com.twitter.finagle.redis

protocol

Permalink

package protocol

Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class Aggregate extends Command with CommandArgument

    Permalink
  2. case class Append(keyBuf: Buf, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  3. case class Auth(code: Buf) extends Command with Product with Serializable

    Permalink
  4. case class BitCount(keyBuf: Buf, start: Option[Int] = None, end: Option[Int] = None) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  5. case class BitOp(op: Buf, dstKey: Buf, srcKeys: Seq[Buf]) extends Command with Product with Serializable

    Permalink
  6. case class BulkReply(message: Buf) extends MultiLineReply with Product with Serializable

    Permalink
  7. abstract class Command extends RedisMessage

    Permalink
  8. trait CommandArgument extends Command

    Permalink
  9. class CommandCodec extends UnifiedProtocolCodec

    Permalink
  10. abstract class Config extends Command

    Permalink
  11. case class ConfigGet(param: ChannelBuffer) extends Config with Product with Serializable

    Permalink
  12. trait ConfigHelper extends AnyRef

    Permalink
  13. case class ConfigResetStat() extends Config with Product with Serializable

    Permalink
  14. case class ConfigSet(param: ChannelBuffer, value: ChannelBuffer) extends Config with Product with Serializable

    Permalink
  15. case class Decr(keyBuf: Buf) extends DecrBy with Product with Serializable

    Permalink
  16. class DecrBy extends Command with StrictKeyCommand

    Permalink
  17. case class Del(bufs: Seq[Buf]) extends Command with StrictKeysCommand with Product with Serializable

    Permalink
  18. case class Dump(buf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  19. case class EmptyBulkReply() extends MultiLineReply with Product with Serializable

    Permalink
  20. case class EmptyMBulkReply() extends MultiLineReply with Product with Serializable

    Permalink
  21. case class ErrorReply(message: String) extends SingleLineReply with Product with Serializable

    Permalink
  22. case class Eval(script: Buf, bufKeys: Seq[Buf], argv: Seq[Buf]) extends Command with ScriptCommand with KeysCommand with Product with Serializable

    Permalink
  23. case class EvalSha(sha: Buf, bufKeys: Seq[Buf], argv: Seq[Buf]) extends Command with ScriptDigestCommand with KeysCommand with Product with Serializable

    Permalink
  24. case class Exists(buf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  25. case class Expire(buf: Buf, seconds: Long) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  26. case class ExpireAt(buf: Buf, timestamp: Time) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  27. case class Get(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  28. case class GetBit(keyBuf: Buf, offset: Int) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  29. case class GetRange(keyBuf: Buf, start: Long, end: Long) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  30. case class GetSet(keyBuf: Buf, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  31. case class HDel(keyBuf: Buf, fields: Seq[Buf]) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  32. case class HExists(keyBuf: Buf, field: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  33. case class HGet(keyBuf: Buf, field: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  34. case class HGetAll(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  35. case class HIncrBy(keyBuf: Buf, field: Buf, amount: Long) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  36. case class HKeys(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  37. case class HLen(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  38. case class HMGet(keyBuf: Buf, fields: Seq[Buf]) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  39. case class HMSet(keyBuf: Buf, fv: Map[Buf, Buf]) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  40. case class HScan(key: Buf, cursor: Long, count: Option[Long] = None, pattern: Option[Buf] = None) extends Command with Product with Serializable

    Permalink
  41. case class HSet(keyBuf: Buf, field: Buf, value: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  42. case class HSetNx(keyBuf: Buf, field: Buf, value: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  43. case class HVals(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  44. case class InMilliseconds(millis: Long) extends TimeToLive with Product with Serializable

    Permalink
  45. case class InSeconds(seconds: Long) extends TimeToLive with Product with Serializable

    Permalink
  46. case class Incr(keyBuf: Buf) extends IncrBy with Product with Serializable

    Permalink
  47. class IncrBy extends Command with StrictKeyCommand

    Permalink
  48. case class Info(section: Buf) extends Command with Product with Serializable

    Permalink
  49. case class IntegerReply(id: Long) extends SingleLineReply with Product with Serializable

    Permalink
  50. trait KeyCommand extends Command

    Permalink
  51. case class Keys(pattern: Buf) extends Command with Product with Serializable

    Permalink
  52. trait KeysCommand extends Command

    Permalink
  53. case class LIndex(keyBuf: Buf, index: Long) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  54. case class LInsert(keyBuf: Buf, relativePosition: String, pivot: Buf, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  55. case class LLen(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  56. case class LPop(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  57. case class LPush(keyBuf: Buf, values: Seq[Buf]) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  58. case class LRange(keyBuf: Buf, start: Long, end: Long) extends Command with ListRangeCommand with Product with Serializable

    Permalink
  59. case class LRem(keyBuf: Buf, count: Long, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  60. case class LSet(keyBuf: Buf, index: Long, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  61. case class LTrim(keyBuf: Buf, start: Long, end: Long) extends Command with ListRangeCommand with Product with Serializable

    Permalink
  62. case class Limit(offset: Long, count: Long) extends Command with CommandArgument with Product with Serializable

    Permalink
  63. trait ListRangeCommand extends Command with StrictKeyCommand

    Permalink
  64. case class MBulkReply(messages: List[Reply]) extends MultiLineReply with Product with Serializable

    Permalink
  65. case class MGet(keysBuf: Seq[Buf]) extends Command with StrictKeysCommand with Product with Serializable

    Permalink
  66. case class MSet(kv: Map[Buf, Buf]) extends Command with MultiSet with Product with Serializable

    Permalink
  67. case class MSetNx(kv: Map[Buf, Buf]) extends Command with MultiSet with Product with Serializable

    Permalink
  68. trait MemberCommand extends Command

    Permalink
  69. case class Move(buf: Buf, db: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  70. sealed abstract class MultiLineReply extends Reply

    Permalink
  71. trait MultiSet extends Command with KeysCommand

    Permalink
  72. trait MultiSetCompanion extends AnyRef

    Permalink
  73. case class NilMBulkReply() extends MultiLineReply with Product with Serializable

    Permalink
  74. case class PExpire(buf: Buf, milliseconds: Long) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  75. case class PExpireAt(buf: Buf, timestamp: Time) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  76. case class PFAdd(keyBuf: Buf, elements: Seq[Buf]) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  77. case class PFCount(keysBuf: Seq[Buf]) extends Command with StrictKeysCommand with Product with Serializable

    Permalink
  78. case class PFMerge(destKey: Buf, srcKeys: Seq[Buf]) extends Command with Product with Serializable

    Permalink
  79. case class PSetEx(keyBuf: Buf, millis: Long, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  80. case class PSubscribe(patterns: Seq[Buf], handler: SubscribeHandler) extends SubscribeCommand with Product with Serializable

    Permalink
  81. case class PTtl(buf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  82. case class PUnsubscribe(patterns: Seq[Buf], handler: SubscribeHandler) extends SubscribeCommand with Product with Serializable

    Permalink
  83. case class Persist(buf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  84. abstract class PubSub extends Command

    Permalink
  85. case class PubSubChannels(pattern: Option[Buf]) extends PubSub with Product with Serializable

    Permalink
  86. sealed trait PubSubHelper extends AnyRef

    Permalink
  87. case class PubSubNumPat() extends PubSub with Product with Serializable

    Permalink
  88. case class PubSubNumSub(channels: Seq[Buf]) extends PubSub with Product with Serializable

    Permalink
  89. case class Publish(keyBuf: Buf, message: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  90. case class RPop(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  91. case class RPush(keyBuf: Buf, values: List[Buf]) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  92. case class Randomkey() extends Command with Product with Serializable

    Permalink
  93. abstract class RedisMessage extends AnyRef

    Permalink
  94. case class Rename(buf: Buf, newkey: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  95. case class RenameNx(buf: Buf, newkey: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  96. sealed abstract class Reply extends RedisMessage

    Permalink
  97. class ReplyCodec extends UnifiedProtocolCodec

    Permalink
  98. case class SAdd(keyBuf: Buf, values: Seq[Buf]) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  99. case class SCard(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  100. case class SInter(keysBuf: Seq[Buf]) extends Command with StrictKeysCommand with Product with Serializable

    Permalink
  101. case class SIsMember(keyBuf: Buf, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  102. case class SMembers(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  103. case class SPop(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  104. case class SRandMember(keyBuf: Buf, count: Option[Int] = None) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  105. case class SRem(keyBuf: Buf, values: List[Buf]) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  106. case class Scan(cursor: Long, count: Option[Long] = None, pattern: Option[Buf] = None) extends Command with Product with Serializable

    Permalink
  107. sealed trait ScoreCommand extends Command

    Permalink
  108. trait ScriptCommand extends Command

    Permalink
  109. trait ScriptDigestCommand extends Command

    Permalink
  110. case class ScriptExists(digests: Seq[Buf]) extends Command with Product with Serializable

    Permalink
  111. case class ScriptLoad(script: Buf) extends Command with ScriptCommand with Product with Serializable

    Permalink
  112. case class Select(index: Int) extends Command with Product with Serializable

    Permalink
  113. abstract class Sentinel extends Command

    Permalink
  114. case class SentinelCkQuorum(name: String) extends Sentinel with Product with Serializable

    Permalink
  115. case class SentinelFailover(name: String) extends Sentinel with Product with Serializable

    Permalink
  116. case class SentinelFlushConfig() extends Sentinel with Product with Serializable

    Permalink
  117. case class SentinelGetMasterAddrByName(name: String) extends Sentinel with Product with Serializable

    Permalink
  118. sealed trait SentinelHelper extends AnyRef

    Permalink
  119. case class SentinelMaster(name: String) extends Sentinel with Product with Serializable

    Permalink
  120. case class SentinelMasters() extends Sentinel with Product with Serializable

    Permalink
  121. case class SentinelMonitor(name: String, ip: String, port: Int, quorum: Int) extends Sentinel with Product with Serializable

    Permalink
  122. case class SentinelRemove(name: String) extends Sentinel with Product with Serializable

    Permalink
  123. case class SentinelReset(pattern: String) extends Sentinel with Product with Serializable

    Permalink
  124. case class SentinelSentinels(name: String) extends Sentinel with Product with Serializable

    Permalink
  125. case class SentinelSet(name: String, option: String, value: String) extends Sentinel with Product with Serializable

    Permalink
  126. case class SentinelSlaves(name: String) extends Sentinel with Product with Serializable

    Permalink
  127. case class Set(keyBuf: Buf, valueBuf: Buf, ttl: Option[TimeToLive] = None, nx: Boolean = false, xx: Boolean = false) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  128. case class SetBit(keyBuf: Buf, offset: Int, value: Int) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  129. case class SetEx(keyBuf: Buf, seconds: Long, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  130. case class SetNx(keyBuf: Buf, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  131. case class SetRange(keyBuf: Buf, offset: Int, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  132. sealed abstract class SingleLineReply extends Reply

    Permalink
  133. case class SlaveOf(host: ChannelBuffer, port: ChannelBuffer) extends Command with Product with Serializable

    Permalink
  134. case class StatusReply(message: String) extends SingleLineReply with Product with Serializable

    Permalink
  135. trait StrictKeyCommand extends Command with KeyCommand

    Permalink
  136. trait StrictKeysCommand extends Command with KeysCommand

    Permalink
  137. trait StrictMemberCommand extends Command with MemberCommand

    Permalink
  138. sealed trait StrictScoreCommand extends Command with ScoreCommand

    Permalink
  139. trait StrictValueCommand extends Command with ValueCommand

    Permalink
  140. sealed trait StrictZMembersCommand extends ZMembersCommand

    Permalink
  141. case class Strlen(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  142. case class Subscribe(channels: Seq[Buf], handler: SubscribeHandler) extends SubscribeCommand with Product with Serializable

    Permalink
  143. abstract class SubscribeCommand extends Command

    Permalink
  144. sealed trait TimeToLive extends AnyRef

    Permalink
  145. case class TopologyAdd(keyBuf: Buf, valueBuf: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  146. case class TopologyDelete(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  147. case class TopologyGet(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  148. case class Ttl(buf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  149. case class Type(buf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  150. trait UnifiedProtocolCodec extends AnyRef

    Permalink
  151. case class Unsubscribe(channels: Seq[Buf], handler: SubscribeHandler) extends SubscribeCommand with Product with Serializable

    Permalink
  152. trait ValueCommand extends Command

    Permalink
  153. case class Watch(bufs: Seq[Buf]) extends Command with KeysCommand with Product with Serializable

    Permalink
  154. class Weights extends Command with CommandArgument with IndexedSeq[Double]

    Permalink
  155. case class ZAdd(keyBuf: Buf, members: Seq[ZMember]) extends Command with StrictKeyCommand with StrictZMembersCommand with Product with Serializable

    Permalink
  156. case class ZCard(keyBuf: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  157. case class ZCount(keyBuf: Buf, min: ZInterval, max: ZInterval) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  158. case class ZIncrBy(keyBuf: Buf, amount: Double, memberBuf: Buf) extends Command with StrictKeyCommand with StrictMemberCommand with Product with Serializable

    Permalink
  159. case class ZInterStore(destination: Buf, numkeys: Int, keysBuf: Seq[Buf], weights: Option[Weights] = None, aggregate: Option[Aggregate] = None) extends ZStore with Product with Serializable

    Permalink
  160. case class ZInterval(value: String) extends Product with Serializable

    Permalink

    Represents part of an interval, helpers in companion object See http://redis.io/commands/zrangebyscore for more info on different intervals

  161. case class ZMember(score: Double, memberBuf: Buf) extends Command with StrictScoreCommand with StrictMemberCommand with Product with Serializable

    Permalink
  162. sealed trait ZMembersCommand extends AnyRef

    Permalink
  163. case class ZRange(keyBuf: Buf, start: Long, stop: Long, withScores: Option[CommandArgument] = None) extends ZRangeCmd with Product with Serializable

    Permalink
  164. case class ZRangeByScore(keyBuf: Buf, min: ZInterval, max: ZInterval, withScores: Option[CommandArgument] = None, limit: Option[Limit] = None) extends Command with ZScoredRange with Product with Serializable

    Permalink
  165. abstract class ZRangeCmd extends Command with StrictKeyCommand

    Permalink
  166. trait ZRangeCmdCompanion extends AnyRef

    Permalink
  167. case class ZRangeResults(entries: Array[Buf], scores: Array[Double]) extends Product with Serializable

    Permalink

    Helper Objects

  168. case class ZRank(keyBuf: Buf, memberBuf: Buf) extends ZRankCmd with Product with Serializable

    Permalink
  169. abstract class ZRankCmd extends Command with StrictKeyCommand with StrictMemberCommand

    Permalink
  170. trait ZRankCmdCompanion extends AnyRef

    Permalink
  171. case class ZRem(keyBuf: Buf, members: Seq[Buf]) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  172. case class ZRemRangeByRank(keyBuf: Buf, start: Long, stop: Long) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  173. case class ZRemRangeByScore(keyBuf: Buf, min: ZInterval, max: ZInterval) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  174. case class ZRevRange(keyBuf: Buf, start: Long, stop: Long, withScores: Option[CommandArgument] = None) extends ZRangeCmd with Product with Serializable

    Permalink
  175. case class ZRevRangeByScore(keyBuf: Buf, max: ZInterval, min: ZInterval, withScores: Option[CommandArgument] = None, limit: Option[Limit] = None) extends Command with ZScoredRange with Product with Serializable

    Permalink
  176. case class ZRevRank(keyBuf: Buf, memberBuf: Buf) extends ZRankCmd with Product with Serializable

    Permalink
  177. case class ZScore(keyBuf: Buf, memberBuf: Buf) extends Command with StrictKeyCommand with StrictMemberCommand with Product with Serializable

    Permalink
  178. trait ZScoredRange extends Command with KeyCommand

    Permalink
  179. trait ZScoredRangeCompanion extends AnyRef

    Permalink
  180. abstract class ZStore extends Command with KeysCommand

    Permalink

    Helper Traits

  181. trait ZStoreCompanion extends AnyRef

    Permalink
  182. case class ZUnionStore(destination: Buf, numkeys: Int, keysBuf: Seq[Buf], weights: Option[Weights] = None, aggregate: Option[Aggregate] = None) extends ZStore with Product with Serializable

    Permalink

Value Members

  1. object Aggregate

    Permalink
  2. object Append extends Serializable

    Permalink
  3. object Auth extends Serializable

    Permalink
  4. object BitCount extends Serializable

    Permalink
  5. object BitOp extends Serializable

    Permalink
  6. object CommandBytes

    Permalink
  7. object Commands

    Permalink
  8. object Config

    Permalink
  9. object ConfigGet extends ConfigHelper with Serializable

    Permalink
  10. object ConfigResetStat extends ConfigHelper with Serializable

    Permalink
  11. object ConfigSet extends ConfigHelper with Serializable

    Permalink
  12. object Count

    Permalink
  13. object Decr extends Serializable

    Permalink
  14. object DecrBy

    Permalink
  15. object Del extends Serializable

    Permalink
  16. object Discard extends Command with Product with Serializable

    Permalink
  17. object Dump extends Serializable

    Permalink
  18. object Exec extends Command with Product with Serializable

    Permalink
  19. object Exists extends Serializable

    Permalink
  20. object Expire extends Serializable

    Permalink
  21. object ExpireAt extends Serializable

    Permalink
  22. object FlushAll extends Command with Product with Serializable

    Permalink
  23. object FlushDB extends Command with Product with Serializable

    Permalink
  24. object Get extends Serializable

    Permalink
  25. object GetBit extends Serializable

    Permalink
  26. object GetRange extends Serializable

    Permalink
  27. object GetSet extends Serializable

    Permalink
  28. object HDel extends Serializable

    Permalink
  29. object HExists extends Serializable

    Permalink
  30. object HGet extends Serializable

    Permalink
  31. object HGetAll extends Serializable

    Permalink
  32. object HIncrBy extends Serializable

    Permalink
  33. object HKeys extends Serializable

    Permalink
  34. object HLen extends Serializable

    Permalink
  35. object HMGet extends Serializable

    Permalink
  36. object HMSet extends Serializable

    Permalink
  37. object HScan extends Serializable

    Permalink
  38. object HSet extends Serializable

    Permalink
  39. object HSetNx extends Serializable

    Permalink
  40. object HVals extends Serializable

    Permalink
  41. object Incr extends Serializable

    Permalink
  42. object IncrBy

    Permalink
  43. object Info extends Serializable

    Permalink
  44. object Keys extends Serializable

    Permalink
  45. object LIndex extends Serializable

    Permalink
  46. object LInsert extends Serializable

    Permalink
  47. object LLen extends Serializable

    Permalink
  48. object LPop extends Serializable

    Permalink
  49. object LPush extends Serializable

    Permalink
  50. object LRange extends Serializable

    Permalink
  51. object LRem extends Serializable

    Permalink
  52. object LSet extends Serializable

    Permalink
  53. object LTrim extends Serializable

    Permalink
  54. object Limit extends Serializable

    Permalink
  55. object MGet extends Serializable

    Permalink
  56. object MSet extends MultiSetCompanion with Serializable

    Permalink
  57. object MSetNx extends MultiSetCompanion with Serializable

    Permalink
  58. object Move extends Serializable

    Permalink
  59. object Multi extends Command with Product with Serializable

    Permalink
  60. object NoReply extends Reply

    Permalink
  61. object PExpire extends Serializable

    Permalink
  62. object PExpireAt extends Serializable

    Permalink
  63. object PFAdd extends Serializable

    Permalink
  64. object PFCount extends Serializable

    Permalink
  65. object PFMerge extends Serializable

    Permalink
  66. object PSetEx extends Serializable

    Permalink
  67. object PTtl extends Serializable

    Permalink
  68. object Pattern

    Permalink
  69. object Persist extends Serializable

    Permalink
  70. object Ping extends Command with Product with Serializable

    Permalink
  71. object PubSub

    Permalink
  72. object PubSubChannels extends PubSubHelper with Serializable

    Permalink
  73. object PubSubNumPat extends PubSubHelper with Serializable

    Permalink
  74. object PubSubNumSub extends PubSubHelper with Serializable

    Permalink
  75. object Publish extends Serializable

    Permalink
  76. object Quit extends Command with Product with Serializable

    Permalink
  77. object RPop extends Serializable

    Permalink
  78. object RPush extends Serializable

    Permalink
  79. object Rename extends Serializable

    Permalink
  80. object RenameNx extends Serializable

    Permalink
  81. object RequireClientProtocol extends ErrorConversion

    Permalink
  82. object RequireServerProtocol extends ErrorConversion

    Permalink
  83. object SAdd extends Serializable

    Permalink
  84. object SCard extends Serializable

    Permalink
  85. object SInter extends Serializable

    Permalink
  86. object SIsMember extends Serializable

    Permalink
  87. object SMembers extends Serializable

    Permalink
  88. object SPop extends Serializable

    Permalink
  89. object SRandMember extends Serializable

    Permalink
  90. object SRem extends Serializable

    Permalink
  91. object Scan extends Serializable

    Permalink
  92. object ScanCompanion

    Permalink
  93. object ScriptFlush extends Command

    Permalink
  94. object Select extends Serializable

    Permalink
  95. object Sentinel

    Permalink
  96. object SentinelCkQuorum extends SentinelHelper with Serializable

    Permalink
  97. object SentinelFailover extends SentinelHelper with Serializable

    Permalink
  98. object SentinelFlushConfig extends SentinelHelper with Serializable

    Permalink
  99. object SentinelGetMasterAddrByName extends SentinelHelper with Serializable

    Permalink
  100. object SentinelMaster extends SentinelHelper with Serializable

    Permalink
  101. object SentinelMasters extends SentinelHelper with Serializable

    Permalink
  102. object SentinelMonitor extends SentinelHelper with Serializable

    Permalink
  103. object SentinelRemove extends SentinelHelper with Serializable

    Permalink
  104. object SentinelReset extends SentinelHelper with Serializable

    Permalink
  105. object SentinelSentinels extends SentinelHelper with Serializable

    Permalink
  106. object SentinelSet extends SentinelHelper with Serializable

    Permalink
  107. object SentinelSlaves extends SentinelHelper with Serializable

    Permalink
  108. object Set extends Serializable

    Permalink
  109. object SetBit extends Serializable

    Permalink
  110. object SetEx extends Serializable

    Permalink
  111. object SetNx extends Serializable

    Permalink
  112. object SetRange extends Serializable

    Permalink
  113. object SlaveOf extends Serializable

    Permalink
  114. object Strlen extends Serializable

    Permalink
  115. object TopologyAdd extends Serializable

    Permalink
  116. object TopologyDelete extends Serializable

    Permalink
  117. object TopologyGet extends Serializable

    Permalink
  118. object Ttl extends Serializable

    Permalink
  119. object Type extends Serializable

    Permalink
  120. object UnWatch extends Command with Product with Serializable

    Permalink
  121. object Watch extends Serializable

    Permalink
  122. object Weights

    Permalink
  123. object WithScores extends Command with CommandArgument with Product with Serializable

    Permalink
  124. object ZAdd extends Serializable

    Permalink
  125. object ZCard extends Serializable

    Permalink
  126. object ZCount extends Serializable

    Permalink
  127. object ZIncrBy extends Serializable

    Permalink
  128. object ZInterStore extends ZStoreCompanion with Serializable

    Permalink
  129. object ZInterval extends Serializable

    Permalink
  130. object ZMembers

    Permalink
  131. object ZRange extends ZRangeCmdCompanion with Serializable

    Permalink
  132. object ZRangeByScore extends ZScoredRangeCompanion with Serializable

    Permalink
  133. object ZRangeResults extends Serializable

    Permalink
  134. object ZRank extends ZRankCmdCompanion with Serializable

    Permalink
  135. object ZRem extends Serializable

    Permalink
  136. object ZRemRangeByRank extends Serializable

    Permalink
  137. object ZRemRangeByScore extends Serializable

    Permalink
  138. object ZRevRange extends ZRangeCmdCompanion with Serializable

    Permalink
  139. object ZRevRangeByScore extends ZScoredRangeCompanion with Serializable

    Permalink
  140. object ZRevRank extends ZRankCmdCompanion with Serializable

    Permalink
  141. object ZScore extends Serializable

    Permalink
  142. object ZUnionStore extends ZStoreCompanion with Serializable

    Permalink
  143. package commands

    Permalink

Ungrouped