Packages

package protocol

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Package Members

  1. package text

Type Members

  1. case class Add(key: Buf, flags: Int, expiry: Time, value: Buf) extends StorageCommand with Product with Serializable
  2. case class Append(key: Buf, flags: Int, expiry: Time, value: Buf) extends StorageCommand with Product with Serializable
  3. sealed abstract class ArithmeticCommand extends NonStorageCommand
  4. case class Cas(key: Buf, flags: Int, expiry: Time, value: Buf, casUnique: Buf) extends StorageCommand with Product with Serializable
  5. class ClientError extends Exception

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

  6. sealed abstract class Command extends AnyRef
  7. case class Decr(key: Buf, value: Long) extends ArithmeticCommand with Product with Serializable
  8. case class Delete(key: Buf) extends Command with Product with Serializable
  9. case class Error(cause: Exception) extends Response with Product with Serializable
  10. case class Get(keys: Seq[Buf]) extends RetrievalCommand with Product with Serializable
  11. case class Gets(keys: Seq[Buf]) extends RetrievalCommand with Product with Serializable
  12. case class Getv(keys: Seq[Buf]) extends RetrievalCommand with Product with Serializable
  13. case class Incr(key: Buf, value: Long) extends ArithmeticCommand with Product with Serializable
  14. case class Info(key: Buf, values: Seq[Buf]) extends Product with Serializable
  15. case class InfoLines(lines: Seq[Info]) extends Response with Product with Serializable
  16. sealed abstract class NonStorageCommand extends Command
  17. class NonexistentCommand extends Exception

    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
  19. case class Prepend(key: Buf, flags: Int, expiry: Time, value: Buf) extends StorageCommand with Product with Serializable
  20. case class Quit() extends Command with Product with Serializable
  21. case class Replace(key: Buf, flags: Int, expiry: Time, value: Buf) extends StorageCommand with Product with Serializable
  22. sealed abstract class Response extends AnyRef
  23. sealed abstract class RetrievalCommand extends NonStorageCommand
  24. class ServerError extends Exception

    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
  26. case class Stats(args: Seq[Buf]) extends NonStorageCommand with Product with Serializable
  27. sealed abstract class StorageCommand extends Command
  28. case class Upsert(key: Buf, flags: Int, expiry: Time, value: Buf, version: Buf) extends StorageCommand with Product with Serializable
  29. case class Value(key: Buf, value: Buf, casUnique: Option[Buf] = None, flags: Option[Buf] = None) extends Product with Serializable
  30. case class Values(values: Seq[Value]) extends Response with Product with Serializable
  31. case class ValuesAndErrors(values: Seq[Value], errors: Map[Buf, Throwable]) extends Response with Product with Serializable

Value Members

  1. case object Deleted extends Response with Product with Serializable
  2. case object Exists extends Response with Product with Serializable
  3. case object NoOp extends Response with Product with Serializable
  4. case object NotFound extends Response with Product with Serializable
  5. case object NotStored extends Response with Product with Serializable
  6. case object Stored extends Response with Product with Serializable

Ungrouped