├── .gitignore ├── Readme.md ├── benchmarks ├── Readme.md ├── current-benchmark-no-proxy.html └── current-benchmark-reads-to-slaves.html ├── bin └── redis-proxy ├── config ├── config.json └── configuration.md ├── docs └── Typical_Setup.jpg ├── lib ├── logging.js ├── redis_command.js ├── redis_proxy.js └── server.js ├── package.json ├── server.js └── test ├── lib └── redis_proxy_spec.js ├── mocha.opts └── testy.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/Readme.md -------------------------------------------------------------------------------- /benchmarks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/benchmarks/Readme.md -------------------------------------------------------------------------------- /benchmarks/current-benchmark-no-proxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/benchmarks/current-benchmark-no-proxy.html -------------------------------------------------------------------------------- /benchmarks/current-benchmark-reads-to-slaves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/benchmarks/current-benchmark-reads-to-slaves.html -------------------------------------------------------------------------------- /bin/redis-proxy: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../server.js'); -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/config/config.json -------------------------------------------------------------------------------- /config/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/config/configuration.md -------------------------------------------------------------------------------- /docs/Typical_Setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/docs/Typical_Setup.jpg -------------------------------------------------------------------------------- /lib/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/lib/logging.js -------------------------------------------------------------------------------- /lib/redis_command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/lib/redis_command.js -------------------------------------------------------------------------------- /lib/redis_proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/lib/redis_proxy.js -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/lib/server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/server.js -------------------------------------------------------------------------------- /test/lib/redis_proxy_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/test/lib/redis_proxy_spec.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/testy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreeix/redis-proxy/HEAD/test/testy.js --------------------------------------------------------------------------------