├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example-config.yml ├── mocha.opts ├── package.json ├── src ├── connection.ts └── connector.ts ├── test ├── connection-params.ts └── connector.spec.ts ├── tsconfig.json └── tslint.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/README.md -------------------------------------------------------------------------------- /example-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/example-config.yml -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/mocha.opts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/package.json -------------------------------------------------------------------------------- /src/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/src/connection.ts -------------------------------------------------------------------------------- /src/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/src/connector.ts -------------------------------------------------------------------------------- /test/connection-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/test/connection-params.ts -------------------------------------------------------------------------------- /test/connector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/test/connector.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepstreamIO/deepstream.io-cache-redis/HEAD/tslint.json --------------------------------------------------------------------------------