pip install django-cache-machine
python
INSTALLED_APPS = [
...
'cache_machine',
]
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
}
}
CACHE_MACHINE_USE_REDIS = True
CACHE_MACHINE_REDIS = {
'host': 'localhost',
'port': 6379,
}
python
from cache_machine.models import CachingMixin
class MyModel(CachingMixin, models.Model):
...