├── .rsync ├── AUTHORS ├── ChangeLog ├── INSTALL ├── INSTALL.html ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── README.html ├── TODO ├── aclocal.m4 ├── autogen.sh ├── bdb.c ├── compile ├── config.h.in ├── configure ├── configure.ac ├── depcomp ├── docgen.sh ├── install-sh ├── item.c ├── memcacheq.c ├── memcacheq.h ├── missing ├── run.sh ├── test.php ├── test ├── basic.t └── enable-limit.t └── thread.c /.rsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/.rsync -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Steve Chu 2 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/INSTALL.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/README -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/README.html -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/autogen.sh -------------------------------------------------------------------------------- /bdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/bdb.c -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/compile -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/depcomp -------------------------------------------------------------------------------- /docgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/docgen.sh -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/install-sh -------------------------------------------------------------------------------- /item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/item.c -------------------------------------------------------------------------------- /memcacheq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/memcacheq.c -------------------------------------------------------------------------------- /memcacheq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/memcacheq.h -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/missing -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/run.sh -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/test.php -------------------------------------------------------------------------------- /test/basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/test/basic.t -------------------------------------------------------------------------------- /test/enable-limit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/test/enable-limit.t -------------------------------------------------------------------------------- /thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentzh/memcacheq/HEAD/thread.c --------------------------------------------------------------------------------