NodeJS memcached client with the most efficient ASCII protocol parser.
- Very efficient memcached ASCII protocol parser by using only NodeJS Buffer APIs.
- Optional compression for the data before sending to memcached
- Auto reconnects when there's network error or timeout
- Support sending arbitrary commands. Read up on the protocol doc here.
- APIs Support callback or Promise
- Support fire and forget requests
This repo uses lerna to manage multiple packages.
- memcache-client - The primary package which is the memcached client.
- memcache-parser - A very efficient memcached ASCII protocol parser.
- memcached-njs - A working memcached server implemented in NodeJS for tests.