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(key: Buf, value: 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(key: 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 AnyRef

    Permalink

    Redis command.

    Redis command.

    See also

    http://redis.io/commands

  8. trait CommandArgument extends Command

    Permalink
  9. abstract class Config extends Command

    Permalink
  10. case class ConfigGet(param: Buf) extends Config with Product with Serializable

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

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

    Permalink
  13. case class Decr(key: Buf) extends DecrBy with Product with Serializable

    Permalink
  14. class DecrBy extends Command with StrictKeyCommand

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

    Permalink
  16. case class Dump(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

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

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

    Permalink
  20. case class Exists(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

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

    Permalink
  23. case class Get(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

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

    Permalink
  26. case class GetSet(key: Buf, value: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

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

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

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

    Permalink
  30. case class HGetAll(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

    Permalink
  32. case class HKeys(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  33. case class HLen(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

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

    Permalink
  36. case class HMSetEx(key: Buf, fv: Map[Buf, Buf], milliseconds: Long) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  37. case class HMergeEx(key: Buf, fv: Map[Buf, Buf], milliseconds: Long) extends Command with StrictKeyCommand with Product with Serializable

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

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

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

    Permalink
  41. case class HStrlen(key: Buf, field: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  42. case class HVals(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

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

    Permalink
  45. case class Incr(key: Buf) extends IncrBy with Product with Serializable

    Permalink
  46. class IncrBy extends Command with StrictKeyCommand

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

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

    Permalink
  49. trait KeyCommand extends Command

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

    Permalink
  51. trait KeysCommand extends Command

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

    Permalink
  53. case class LInsert(key: Buf, relativePosition: String, pivot: Buf, value: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  54. case class LLen(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  55. case class LPop(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

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

    Permalink
  58. case class LRem(key: Buf, count: Long, value: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  59. case class LSet(key: Buf, index: Long, value: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

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

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

    Permalink
  62. trait ListRangeCommand extends Command with StrictKeyCommand

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

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

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

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

    Permalink
  67. trait MemberCommand extends Command

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

    Permalink
  69. sealed abstract class MultiLineReply extends Reply

    Permalink
  70. trait MultiSet extends Command with KeysCommand

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

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

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

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

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

    Permalink
  76. case class PSetEx(key: Buf, millis: Long, value: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

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

    Permalink
  78. case class PTtl(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

    Permalink
  80. case class Persist(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  81. abstract class PubSub extends Command

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

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

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

    Permalink
  85. case class RPop(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

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

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

    Permalink
  89. sealed abstract class Reply extends AnyRef

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

    Permalink
  91. case class SCard(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

    Permalink
  93. case class SIsMember(key: Buf, value: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  94. case class SMembers(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  95. case class SPop(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

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

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

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

    Permalink
  100. trait ScriptCommand extends Command

    Permalink
  101. trait ScriptDigestCommand extends Command

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

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

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

    Permalink
  105. abstract class Sentinel extends Command

    Permalink
  106. case class SentinelCkQuorum(arg: String) extends Sentinel with Product with Serializable

    Permalink
  107. case class SentinelFailover(arg: String) extends Sentinel with Product with Serializable

    Permalink
  108. case class SentinelGetMasterAddrByName(arg: String) extends Sentinel with Product with Serializable

    Permalink
  109. case class SentinelMaster(arg: String) extends Sentinel with Product with Serializable

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

    Permalink
  111. case class SentinelRemove(arg: String) extends Sentinel with Product with Serializable

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

    Permalink
  113. case class SentinelSentinels(arg: String) extends Sentinel with Product with Serializable

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

    Permalink
  115. case class SentinelSlaves(arg: String) extends Sentinel with Product with Serializable

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

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

    Permalink
  118. case class SetEx(key: Buf, seconds: Long, value: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  119. case class SetNx(key: Buf, value: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  120. case class SetRange(key: Buf, offset: Int, value: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  121. sealed abstract class SingleLineReply extends Reply

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

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

    Permalink
  124. trait StrictKeyCommand extends Command with KeyCommand

    Permalink
  125. trait StrictKeysCommand extends Command with KeysCommand

    Permalink
  126. trait StrictMemberCommand extends Command with MemberCommand

    Permalink
  127. trait StrictValueCommand extends Command with ValueCommand

    Permalink
  128. case class Strlen(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

    Permalink
  130. abstract class SubscribeCommand extends Command

    Permalink
  131. sealed trait TimeToLive extends AnyRef

    Permalink
  132. case class TopologyAdd(key: Buf, value: Buf) extends Command with StrictKeyCommand with StrictValueCommand with Product with Serializable

    Permalink
  133. case class TopologyDelete(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  134. case class TopologyGet(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  135. case class Ttl(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

    Permalink
  136. case class Type(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

    Permalink
  138. trait ValueCommand extends Command

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

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

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

    Permalink
  142. case class ZCard(key: Buf) extends Command with StrictKeyCommand with Product with Serializable

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

    Permalink
  144. case class ZIncrBy(key: Buf, amount: Double, member: Buf) extends Command with StrictKeyCommand with StrictMemberCommand with Product with Serializable

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

    Permalink
  146. 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

  147. case class ZMember(score: Double, member: Buf) extends Product with Serializable

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

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

    Permalink
  150. abstract class ZRangeCmd extends Command with StrictKeyCommand

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

    Permalink

    Helper Objects

  152. case class ZRank(key: Buf, member: Buf) extends ZRankCmd with Product with Serializable

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

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

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

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

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

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

    Permalink
  159. case class ZRevRank(key: Buf, member: Buf) extends ZRankCmd with Product with Serializable

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

    Permalink
  161. case class ZScore(key: Buf, member: Buf) extends Command with StrictKeyCommand with StrictMemberCommand with Product with Serializable

    Permalink
  162. trait ZScoredRange extends Command with KeyCommand

    Permalink
  163. abstract class ZStore extends Command with KeysCommand

    Permalink

    Helper Traits

  164. case class ZUnionStore(destination: Buf, numkeys: Int, keys: 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 BitOp extends Serializable

    Permalink
  3. object Command

    Permalink
  4. object DBSize extends Command with Product with Serializable

    Permalink
  5. object DecrBy

    Permalink
  6. object Discard extends Command with Product with Serializable

    Permalink
  7. object EmptyBulkReply extends MultiLineReply with Product with Serializable

    Permalink
  8. object EmptyMBulkReply extends MultiLineReply with Product with Serializable

    Permalink
  9. object Exec extends Command with Product with Serializable

    Permalink
  10. object FlushAll extends Command with Product with Serializable

    Permalink
  11. object FlushDB extends Command with Product with Serializable

    Permalink
  12. object IncrBy

    Permalink
  13. object Multi extends Command with Product with Serializable

    Permalink
  14. object NilMBulkReply extends MultiLineReply with Product with Serializable

    Permalink
  15. object NoReply extends Reply with Product with Serializable

    Permalink
  16. object Ping extends Command with Product with Serializable

    Permalink
  17. object PubSubNumPat extends PubSub with Product with Serializable

    Permalink
  18. object Quit extends Command with Product with Serializable

    Permalink
  19. object Randomkey extends Command with Product with Serializable

    Permalink
  20. object Reply

    Permalink
  21. object RequireClientProtocol extends ErrorConversion

    Permalink
  22. object RequireServerProtocol extends ErrorConversion

    Permalink
  23. object ScriptFlush extends Command

    Permalink
  24. object SentinelFlushConfig extends Sentinel with Product with Serializable

    Permalink
  25. object SentinelMasters extends Sentinel with Product with Serializable

    Permalink
  26. object Set extends Serializable

    Permalink
  27. object UnWatch extends Command with Product with Serializable

    Permalink
  28. object Watch extends Serializable

    Permalink
  29. object Weights

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

    Permalink
  31. object ZInterStore extends Serializable

    Permalink
  32. object ZInterval extends Serializable

    Permalink
  33. object ZRange extends Serializable

    Permalink
  34. object ZRangeByScore extends Serializable

    Permalink
  35. object ZRangeResults extends Serializable

    Permalink
  36. object ZUnionStore extends Serializable

    Permalink
  37. package commands

    Permalink

Ungrouped