Hi, I just try out the Filesystem cache but don't know how to test it. Kindly please check that I'm caching the view correctly or not?
settings.py
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
'LOCATION': '/dev/shm',
}
}
and the view :
@cache_page(900)
def dashboard(request):
__something__