├── .gitignore ├── README.rst ├── clever_cache ├── __init__.py ├── apps.py ├── backend.py ├── lua.py ├── migrations │ └── __init__.py ├── monkeypatch.py └── utils.py ├── run_tests.py ├── setup.py ├── tests ├── __init__.py ├── settings.py └── testapp │ ├── __init__.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ └── tests.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/README.rst -------------------------------------------------------------------------------- /clever_cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/clever_cache/__init__.py -------------------------------------------------------------------------------- /clever_cache/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/clever_cache/apps.py -------------------------------------------------------------------------------- /clever_cache/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/clever_cache/backend.py -------------------------------------------------------------------------------- /clever_cache/lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/clever_cache/lua.py -------------------------------------------------------------------------------- /clever_cache/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clever_cache/monkeypatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/clever_cache/monkeypatch.py -------------------------------------------------------------------------------- /clever_cache/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/clever_cache/utils.py -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/tests/testapp/apps.py -------------------------------------------------------------------------------- /tests/testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/tests/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/tests/testapp/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafGb/django-clever-cache/HEAD/tox.ini --------------------------------------------------------------------------------