Set up database cache for django-q2 monitoring
This commit is contained in:
parent
3e003bddb7
commit
72cf436e50
@ -85,6 +85,16 @@ class Base(Configuration):
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
CACHES = {
|
||||||
|
"default": {
|
||||||
|
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
|
||||||
|
},
|
||||||
|
"database": {
|
||||||
|
"BACKEND": "django.core.cache.backends.db.DatabaseCache",
|
||||||
|
"LOCATION": "django_cache",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
|
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
|
||||||
|
|
||||||
WSGI_APPLICATION = "cmsmanage.wsgi.application"
|
WSGI_APPLICATION = "cmsmanage.wsgi.application"
|
||||||
@ -157,6 +167,7 @@ class Base(Configuration):
|
|||||||
"error_reporter": {"admin_email": {}},
|
"error_reporter": {"admin_email": {}},
|
||||||
"ack_failures": True,
|
"ack_failures": True,
|
||||||
"max_attempts": 1,
|
"max_attempts": 1,
|
||||||
|
"cache": "database",
|
||||||
"ALT_CLUSTERS": {
|
"ALT_CLUSTERS": {
|
||||||
"internal": {
|
"internal": {
|
||||||
"retry": 60 * 60,
|
"retry": 60 * 60,
|
||||||
|
Loading…
Reference in New Issue
Block a user