4bfc868fa3
compatible / memcached, and has more features(as follows): * persistent storage (you can use flare as persistent memcached) * pluggable storage (currently only Tokyo Cabinet is available, though:) * data replication (synchronous or asynchronous) * data partitioning (automatically partitioned according to # of master servers (clients do not have to care about it)) * dynamic reconstruction, and partitioning (you can dynamically (I mean, without any service interruption) add slave servers and partition master servers) * node monitoring and failover (if any server is down, the server is automatically isolated from active servers and another slave server is promoted to master server) * request proxy (you can always get same result regardless of servers you connect to. so you can think flare servers as one big key-value storage) * over 256 bytes keys, and over 1M bytes values are available WWW: http://labs.gree.jp/Top/OpenSource/Flare-en.html
13 lines
301 B
C
13 lines
301 B
C
--- src/lib/server.h.orig 2009-10-09 19:08:47.000000000 +0900
|
|
+++ src/lib/server.h 2010-05-29 10:10:05.713330772 +0900
|
|
@@ -10,9 +10,9 @@
|
|
|
|
#include "config.h"
|
|
|
|
+#include <sys/types.h>
|
|
#include <netinet/tcp.h>
|
|
#include <sys/un.h>
|
|
-#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
#ifdef HAVE_EPOLL
|