Django - Caching
Identify the error in this Django cache configuration snippet:
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'LOCATION': '/tmp/django_cache'
}
}