Package

com.twitter.finagle.memcached

protocol

Permalink

package protocol

Visibility
  1. Public
  2. All

Type Members

  1. case class Add(key: Buf, flags: Int, expiry: Time, value: Buf) extends StorageCommand with Product with Serializable

    Permalink
  2. case class Append(key: Buf, flags: Int, expiry: Time, value: Buf) extends StorageCommand with Product with Serializable

    Permalink
  3. sealed abstract class ArithmeticCommand extends NonStorageCommand

    Permalink
  4. case class Cas(key: Buf, flags: Int, expiry: Time, value: Buf, casUnique: Buf) extends StorageCommand with Product with Serializable

    Permalink
  5. class ClientError extends Exception

    Permalink

    A catch-all exception class for memcached client-related failures.

  6. sealed abstract class Command extends AnyRef

    Permalink
  7. case class Decr(key: Buf, value: Long) extends ArithmeticCommand with Product with Serializable

    Permalink
  8. case class Delete(key: Buf) extends Command with Product with Serializable

    Permalink
  9. case class Error(cause: Exception) extends Response with Product with Serializable

    Permalink
  10. case class Get(keys: Seq[Buf]) extends RetrievalCommand with Product with Serializable

    Permalink
  11. case class Gets(keys: Seq[Buf]) extends RetrievalCommand with Product with Serializable

    Permalink
  12. case class Getv(keys: Seq[Buf]) extends RetrievalCommand with Product with Serializable

    Permalink
  13. case class Incr(key: Buf, value: Long) extends ArithmeticCommand with Product with Serializable

    Permalink
  14. case class Info(key: Buf, values: Seq[Buf]) extends Product with Serializable

    Permalink
  15. case class InfoLines(lines: Seq[Info]) extends Response with Product with Serializable

    Permalink
  16. sealed abstract class NonStorageCommand extends Command

    Permalink
  17. class NonexistentCommand extends Exception

    Permalink

    Indicates that a request failed because an attempt was made to decode a non-existent memcached command.

  18. case class Number(value: Long) extends Response with Product with Serializable

    Permalink
  19. case class Prepend(key: Buf, flags: Int, expiry: Time, value: Buf) extends StorageCommand with Product with Serializable

    Permalink
  20. case class Quit() extends Command with Product with Serializable

    Permalink
  21. case class Replace(key: Buf, flags: Int, expiry: Time, value: Buf) extends StorageCommand with Product with Serializable

    Permalink
  22. sealed abstract class Response extends AnyRef

    Permalink
  23. sealed abstract class RetrievalCommand extends NonStorageCommand

    Permalink
  24. class ServerError extends Exception

    Permalink

    A catch-all exception class for memcached server-related failures.

  25. case class Set(key: Buf, flags: Int, expiry: Time, value: Buf) extends StorageCommand with Product with Serializable

    Permalink
  26. case class Stats(args: Seq[Buf]) extends NonStorageCommand with Product with Serializable

    Permalink
  27. sealed abstract class StorageCommand extends Command

    Permalink
  28. case class Upsert(key: Buf, flags: Int, expiry: Time, value: Buf, version: Buf) extends StorageCommand with Product with Serializable

    Permalink
  29. case class Value(key: Buf, value: Buf, casUnique: Option[Buf] = None, flags: Option[Buf] = None) extends Product with Serializable

    Permalink
  30. case class Values(values: Seq[Value]) extends Response with Product with Serializable

    Permalink
  31. case class ValuesAndErrors(values: Seq[Value], errors: Map[Buf, Throwable]) extends Response with Product with Serializable

    Permalink

Value Members

  1. object Deleted extends Response with Product with Serializable

    Permalink
  2. object Exists extends Response with Product with Serializable

    Permalink
  3. object NoOp extends Response with Product with Serializable

    Permalink
  4. object NotFound extends Response with Product with Serializable

    Permalink
  5. object NotStored extends Response with Product with Serializable

    Permalink
  6. object Stored extends Response with Product with Serializable

    Permalink
  7. package text

    Permalink

Ungrouped