├── .coveragerc ├── .gitignore ├── .travis.yml ├── AUTHORS ├── HISTORY.rst ├── LICENSE ├── README.rst ├── balancer ├── __init__.py ├── middleware.py ├── mixins.py ├── models.py ├── pinning.py └── routers.py ├── docs ├── Makefile ├── conf.py ├── index.rst ├── installation.rst ├── routers.rst └── settings.rst ├── runtests.py ├── setup.py ├── test_project ├── __init__.py ├── manage.py ├── models.py ├── settings.py └── urls.py ├── test_requirements.txt └── tests ├── __init__.py ├── test_pinning_round_robin_master_slave_router.py ├── test_pinning_router.py ├── test_pinning_weighted_master_slave_router.py ├── test_random_router.py ├── test_round_robin_master_slave_router.py ├── test_round_robin_router.py ├── test_weighted_master_slave_router.py └── test_weighted_random_router.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/AUTHORS -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/README.rst -------------------------------------------------------------------------------- /balancer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/balancer/__init__.py -------------------------------------------------------------------------------- /balancer/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/balancer/middleware.py -------------------------------------------------------------------------------- /balancer/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/balancer/mixins.py -------------------------------------------------------------------------------- /balancer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/balancer/models.py -------------------------------------------------------------------------------- /balancer/pinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/balancer/pinning.py -------------------------------------------------------------------------------- /balancer/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/balancer/routers.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/routers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/docs/routers.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/test_project/models.py -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/test_project/urls.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/test_requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_pinning_round_robin_master_slave_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/tests/test_pinning_round_robin_master_slave_router.py -------------------------------------------------------------------------------- /tests/test_pinning_router.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_pinning_weighted_master_slave_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/tests/test_pinning_weighted_master_slave_router.py -------------------------------------------------------------------------------- /tests/test_random_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/tests/test_random_router.py -------------------------------------------------------------------------------- /tests/test_round_robin_master_slave_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/tests/test_round_robin_master_slave_router.py -------------------------------------------------------------------------------- /tests/test_round_robin_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/tests/test_round_robin_router.py -------------------------------------------------------------------------------- /tests/test_weighted_master_slave_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/tests/test_weighted_master_slave_router.py -------------------------------------------------------------------------------- /tests/test_weighted_random_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelhelmick/django-balancer/HEAD/tests/test_weighted_random_router.py --------------------------------------------------------------------------------