Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

cache file django

CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
        'LOCATION': '/var/tmp/django_cache',
    }
}
Source by docs.djangoproject.com #
 
PREVIOUS NEXT
Tagged: #cache #file #django
ADD COMMENT
Topic
Name
2+8 =