├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django_elasticache ├── __init__.py ├── cluster_utils.py └── memcached.py ├── docs └── images │ └── get operation in cluster.png ├── setup.py └── tests ├── __init__.py ├── test_backend.py └── test_protocol.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/README.rst -------------------------------------------------------------------------------- /django_elasticache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/django_elasticache/__init__.py -------------------------------------------------------------------------------- /django_elasticache/cluster_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/django_elasticache/cluster_utils.py -------------------------------------------------------------------------------- /django_elasticache/memcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/django_elasticache/memcached.py -------------------------------------------------------------------------------- /docs/images/get operation in cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/docs/images/get operation in cluster.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/tests/test_backend.py -------------------------------------------------------------------------------- /tests/test_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusdan/django-elasticache/HEAD/tests/test_protocol.py --------------------------------------------------------------------------------