默认使用内存缓存

HongWeipeng 6 years ago committed by GitHub
parent e1bdc27768
commit c70271cca0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -189,7 +189,7 @@ CACHES = {
'LOCATION': os.environ.get('DJANGO_MEMCACHED_LOCATION') or '127.0.0.1:11211',
'KEY_PREFIX': 'django_test' if TESTING else 'djangoblog',
'TIMEOUT': 60 * 60 * 10
} if env_to_bool('DJANGO_MEMCACHED_ENABLE', True) else {
} if env_to_bool('DJANGO_MEMCACHED_ENABLE', False) else {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'TIMEOUT': 10800,
'LOCATION': 'unique-snowflake',

Loading…
Cancel
Save