├── .gitignore ├── README.rst ├── bin ├── active ├── deploy.py └── gen_conf.py ├── conf ├── conf.py ├── control.sh ├── redis.conf └── sentinel.conf ├── doc └── twemproxy-sentinel-cluster.png ├── lib ├── monitor.py └── utils.py ├── log └── .gitignore └── tests └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/README.rst -------------------------------------------------------------------------------- /bin/active: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/bin/active -------------------------------------------------------------------------------- /bin/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/bin/deploy.py -------------------------------------------------------------------------------- /bin/gen_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/bin/gen_conf.py -------------------------------------------------------------------------------- /conf/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/conf/conf.py -------------------------------------------------------------------------------- /conf/control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/conf/control.sh -------------------------------------------------------------------------------- /conf/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/conf/redis.conf -------------------------------------------------------------------------------- /conf/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/conf/sentinel.conf -------------------------------------------------------------------------------- /doc/twemproxy-sentinel-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/doc/twemproxy-sentinel-cluster.png -------------------------------------------------------------------------------- /lib/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/lib/monitor.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/lib/utils.py -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changyibiao/redis-mgr/HEAD/tests/run.sh --------------------------------------------------------------------------------