django 2 2 disable cache settings static url

Solutions on MaxInterview for django 2 2 disable cache settings static url by the best coders in the world

showing results for - "django 2 2 disable cache settings static url"
Émilie
08 Nov 2016
1CACHES = {
2    'default': {
3        'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
4    }
5}
6
similar questions