├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── iterator.js ├── luascripts ├── zhpairs.lua ├── zhrevpairs.lua ├── zhrevvalues-lk.lua └── zhvalues-lk.lua ├── package.json ├── scriptsLoader.js └── test ├── batch-prefix-test.js ├── pouchdb ├── test-pouchdb-redis.sh └── test-pouchdb.sh ├── redis-client-test.js ├── test.js └── testCommon.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/index.js -------------------------------------------------------------------------------- /iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/iterator.js -------------------------------------------------------------------------------- /luascripts/zhpairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/luascripts/zhpairs.lua -------------------------------------------------------------------------------- /luascripts/zhrevpairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/luascripts/zhrevpairs.lua -------------------------------------------------------------------------------- /luascripts/zhrevvalues-lk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/luascripts/zhrevvalues-lk.lua -------------------------------------------------------------------------------- /luascripts/zhvalues-lk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/luascripts/zhvalues-lk.lua -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/package.json -------------------------------------------------------------------------------- /scriptsLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/scriptsLoader.js -------------------------------------------------------------------------------- /test/batch-prefix-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/test/batch-prefix-test.js -------------------------------------------------------------------------------- /test/pouchdb/test-pouchdb-redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/test/pouchdb/test-pouchdb-redis.sh -------------------------------------------------------------------------------- /test/pouchdb/test-pouchdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/test/pouchdb/test-pouchdb.sh -------------------------------------------------------------------------------- /test/redis-client-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/test/redis-client-test.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/test/test.js -------------------------------------------------------------------------------- /test/testCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmalphettes/redisdown/HEAD/test/testCommon.js --------------------------------------------------------------------------------