#include <string>
#include <vector>
#include "ReadWriteBuffer.h"
Go to the source code of this file.
Classes | |
| class | MemCacheClient |
| Public client interface for memcached. More... | |
| struct | MemCacheClient::MemRequest |
| Input and output structure for most requests to the server. More... | |
| struct | MemCacheClient::ConsistentHash |
| Maintain the N:1 hash key to server relationship used for consistent hashing. More... | |
Enumerations | |
| enum | MCResult { MCERR_OK = 0, MCERR_NOREPLY = 1, MCERR_NOTSTORED = 2, MCERR_NOTFOUND = 3, MCERR_NOSERVER = -1 } |
| Result code for requests to a server. More... | |
Definition in file MemCacheClient.h.
| enum MCResult |
Result code for requests to a server.
Success codes are greater or equal to 0. Failure codes are less than 0.
Definition at line 108 of file MemCacheClient.h.
1.5.6