├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── index.js ├── package.json └── test ├── failed_connection.test.js ├── heroku_rediscloud.test.js ├── kill_connection_manually.test.js ├── local_redis.test.js └── local_redis_reuse.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/package.json -------------------------------------------------------------------------------- /test/failed_connection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/test/failed_connection.test.js -------------------------------------------------------------------------------- /test/heroku_rediscloud.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/test/heroku_rediscloud.test.js -------------------------------------------------------------------------------- /test/kill_connection_manually.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/test/kill_connection_manually.test.js -------------------------------------------------------------------------------- /test/local_redis.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/test/local_redis.test.js -------------------------------------------------------------------------------- /test/local_redis_reuse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/redis-connection/HEAD/test/local_redis_reuse.test.js --------------------------------------------------------------------------------