30👍
✅
You can use django dummy caching for development:
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
}
}
https://docs.djangoproject.com/en/dev/topics/cache/?from=olddocs/#dummy-caching-for-development
0👍
It can be a problem to make sure your media files, including your stylesheets, are never cached. Here is one way that works for me:
Source:stackexchange.com