1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-07-15 16:29:15 -04:00
ports/databases/memcachedb/files/patch-memcachedb.h
Cheng-Lung Sung 5101442b7d Memcachedb is a distributed storage system designed for persistent. We
simplely hacked from memcached and tugela. But neither of them.
Memcachedb is not a cache solution, it is a persistent solution for
high-frequency writing and reading. It conforms to memcache protocol
(not completed, see below), so any memcached client can have
connectivity with memcachedb. Memcachedb uses Berkeley DB as a storing
backend, so lots of features including transaction and replication are
supported.

WWW:	http://code.google.com/p/memcachedb/

PR:		ports/116548
Submitted by:	Gea-Suan Lin <gslin at gslin.org>
2007-09-27 03:02:34 +00:00

13 lines
354 B
C

--- memcachedb.h.orig 2007-09-22 04:01:02.000000000 +0800
+++ memcachedb.h 2007-09-22 04:01:15.000000000 +0800
@@ -40,8 +40,8 @@
extern struct stats stats;
extern struct settings settings;
-#define END_LEN 32
-#define END_LEN_STR "31"
+#define END_LEN 128
+#define END_LEN_STR "127"
typedef struct _stritem {
int nbytes; /* size of data */