├── .github └── workflows │ └── npm-grunt.yml ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── docs ├── CNAME ├── README.md ├── add.md ├── appendprepend.md ├── basics.md ├── cachedump.md ├── delete.md ├── disconnect.md ├── elasticache.md ├── flush.md ├── get.md ├── getmulti.md ├── incrdecr.md ├── initialization.md ├── intro.md ├── items.md ├── misc.md ├── replace.md └── set.md ├── index.js ├── lib ├── client.js ├── connection-pool.js ├── connection.js └── misc.js ├── package.json ├── test ├── client.js ├── connection.js └── mocha.opts └── yarn.lock /.github/workflows/npm-grunt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/.github/workflows/npm-grunt.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | memcache-plus.com 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/add.md -------------------------------------------------------------------------------- /docs/appendprepend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/appendprepend.md -------------------------------------------------------------------------------- /docs/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/basics.md -------------------------------------------------------------------------------- /docs/cachedump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/cachedump.md -------------------------------------------------------------------------------- /docs/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/delete.md -------------------------------------------------------------------------------- /docs/disconnect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/disconnect.md -------------------------------------------------------------------------------- /docs/elasticache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/elasticache.md -------------------------------------------------------------------------------- /docs/flush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/flush.md -------------------------------------------------------------------------------- /docs/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/get.md -------------------------------------------------------------------------------- /docs/getmulti.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/getmulti.md -------------------------------------------------------------------------------- /docs/incrdecr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/incrdecr.md -------------------------------------------------------------------------------- /docs/initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/initialization.md -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/items.md -------------------------------------------------------------------------------- /docs/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/misc.md -------------------------------------------------------------------------------- /docs/replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/replace.md -------------------------------------------------------------------------------- /docs/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/docs/set.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/index.js -------------------------------------------------------------------------------- /lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/lib/client.js -------------------------------------------------------------------------------- /lib/connection-pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/lib/connection-pool.js -------------------------------------------------------------------------------- /lib/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/lib/connection.js -------------------------------------------------------------------------------- /lib/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/lib/misc.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/package.json -------------------------------------------------------------------------------- /test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/test/client.js -------------------------------------------------------------------------------- /test/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/test/connection.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --ui bdd -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorquinn/memcache-plus/HEAD/yarn.lock --------------------------------------------------------------------------------