├── AUTHORS ├── CREDITS ├── ChangeLog ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── TODO ├── aclocal.m4 ├── autogen.sh ├── bdb.c ├── compile ├── conf ├── DB_CONFIG.example ├── Makefile.am └── Makefile.in ├── config.h.in ├── configure ├── configure.ac ├── depcomp ├── doc ├── Makefile.am ├── Makefile.in ├── protocol.txt └── rget.txt ├── install-sh ├── item.c ├── memcachedb.c ├── memcachedb.h ├── missing ├── run.sh ├── stats.c ├── thread.c └── tools ├── Makefile.am ├── Makefile.in ├── mcben.py ├── mdbtest.py ├── mdbtop.py └── memcache.py /AUTHORS: -------------------------------------------------------------------------------- 1 | Steve Chu 2 | -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/CREDITS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/autogen.sh -------------------------------------------------------------------------------- /bdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/bdb.c -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/compile -------------------------------------------------------------------------------- /conf/DB_CONFIG.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/conf/DB_CONFIG.example -------------------------------------------------------------------------------- /conf/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = DB_CONFIG.example 2 | -------------------------------------------------------------------------------- /conf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/conf/Makefile.in -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/depcomp -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = *.txt 2 | -------------------------------------------------------------------------------- /doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/doc/Makefile.in -------------------------------------------------------------------------------- /doc/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/doc/protocol.txt -------------------------------------------------------------------------------- /doc/rget.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/doc/rget.txt -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/install-sh -------------------------------------------------------------------------------- /item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/item.c -------------------------------------------------------------------------------- /memcachedb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/memcachedb.c -------------------------------------------------------------------------------- /memcachedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/memcachedb.h -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/missing -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/run.sh -------------------------------------------------------------------------------- /stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/stats.c -------------------------------------------------------------------------------- /thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/thread.c -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = *.py 2 | -------------------------------------------------------------------------------- /tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/tools/Makefile.in -------------------------------------------------------------------------------- /tools/mcben.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/tools/mcben.py -------------------------------------------------------------------------------- /tools/mdbtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/tools/mdbtest.py -------------------------------------------------------------------------------- /tools/mdbtop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/tools/mdbtop.py -------------------------------------------------------------------------------- /tools/memcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stvchu/memcachedb/HEAD/tools/memcache.py --------------------------------------------------------------------------------