#include <winsock2.h>
#include <stdio.h>
#include <string.h>
#include <vector>
#include <algorithm>
#include <cassert>
#include "MemCacheClient.h"
#include "md5.h"
Go to the source code of this file.
Classes | |
| class | ServerSocket |
| Socket connection, disconnection, and buffered data receives. More... | |
| class | ServerSocket::Exception |
| Exception thrown on any send or receive error. More... | |
| class | MemCacheClient::Server |
| Abstraction of a server connection. More... | |
| struct | MemCacheClient::ConsistentHash::MatchServer |
| struct | MemCacheClient::MemRequest::Sort |
| Sort the requests into server order. More... | |
Defines | |
| #define | MEMCACHECLIENT_RECONNECT_SEC 60 |
| Minimum period of time between connection attempts to a server. | |
Definition in file MemCacheClient.cpp.
| #define MEMCACHECLIENT_RECONNECT_SEC 60 |
Minimum period of time between connection attempts to a server.
After either an attempt or an actual connection to a server, there will be a minimum of this period before we attempt to connect again.
Definition at line 54 of file MemCacheClient.cpp.
Referenced by MemCacheClient::Server::Connect().
1.5.6