├── .gitignore ├── README.md ├── bin └── redis_twemproxy_agent ├── conf ├── sentinel.conf └── twemproxy.yml ├── init.d └── twemproxy_sentinel ├── lib ├── agent.js └── cli.js ├── package.json └── spec ├── agent_spec.js ├── integration_spec.js └── support ├── master.conf ├── nutcracker.conf ├── restart ├── sentinel.conf └── slave.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/README.md -------------------------------------------------------------------------------- /bin/redis_twemproxy_agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/bin/redis_twemproxy_agent -------------------------------------------------------------------------------- /conf/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/conf/sentinel.conf -------------------------------------------------------------------------------- /conf/twemproxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/conf/twemproxy.yml -------------------------------------------------------------------------------- /init.d/twemproxy_sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/init.d/twemproxy_sentinel -------------------------------------------------------------------------------- /lib/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/lib/agent.js -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/lib/cli.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/package.json -------------------------------------------------------------------------------- /spec/agent_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/spec/agent_spec.js -------------------------------------------------------------------------------- /spec/integration_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/spec/integration_spec.js -------------------------------------------------------------------------------- /spec/support/master.conf: -------------------------------------------------------------------------------- 1 | port 36379 2 | dbfilename ./spec/support/master.rdb 3 | -------------------------------------------------------------------------------- /spec/support/nutcracker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/spec/support/nutcracker.conf -------------------------------------------------------------------------------- /spec/support/restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/spec/support/restart -------------------------------------------------------------------------------- /spec/support/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/spec/support/sentinel.conf -------------------------------------------------------------------------------- /spec/support/slave.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stono/redis-twemproxy-agent/HEAD/spec/support/slave.conf --------------------------------------------------------------------------------