Memcached protocol implementations
-
Interface Summary
Interface |
Description |
AssocCommandAware |
Assoc commands aware interface.Association commands mean that commands has the same key.
|
MapReturnValueAware |
Command which implement this interface,it's return value is a map
|
MergeCommandsAware |
Merge commands aware interface.Merge commands mean that merge get commands to a bulk-get
commands.
|
ServerAddressAware |
Server address aware interface.Command which implement this interface have these methods to
getter/setter memcached's InetSocketAddress.
|
StoreCommand |
A store command interface for STORE commands such as SET,ADD
|
-
Class Summary
Class |
Description |
BinaryCommandFactory |
Binary protocol command factory
|
Command |
Abstract Memcached Command
|
KestrelCommandFactory |
Kestrel is a message queue written in scala by robey(http://github.com/robey/kestrel).It's
protocol use memcached text protocol,so you can use any memcached clients to talk with it.But
it's protocol implementation is not all compatible with memcached standard protocol,So xmemcached
supply this command factory for it.
|
TextCommandFactory |
Command Factory for creating text protocol commands.
|
VerbosityCommand |
Abstract verbosity command for text protocol
|
-