mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 00:50:29 -04:00
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>
10 lines
238 B
C
10 lines
238 B
C
--- memcachedb.c.orig 2007-09-21 18:52:54.000000000 +0800
|
|
+++ memcachedb.c 2007-09-27 09:26:43.000000000 +0800
|
|
@@ -39,7 +39,6 @@
|
|
#include <assert.h>
|
|
#include <db.h>
|
|
#include <signal.h>
|
|
-#include <malloc.h>
|
|
|
|
#include "memcachedb.h"
|
|
|