One potential implementation of Redis as a backend caching utility is the django-redis-cache package.
This example assumes you already have a Redis server operating.
$ pip install django-redis-cache
Edit your settings.py to include a CACHES object (see Django documentation on caching).
CACHES ...
One potential implementation of Redis as a backend caching utility is the django-redis package.
This example assumes you already have a Redis server operating.
$ pip install django-redis
Edit your settings.py to include a CACHES object (see Django documentation on caching).
CACHES = {
'de...