Skip to content

Commit 998b542

Browse files
committed
Use LocMemCache instead of DummyCache in development
LocMemCache was the selected option for docker setup, no reason not to use it without Docker too
1 parent d07c086 commit 998b542

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

djangoproject/settings/dev.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
CACHES = {
1616
"default": {
17-
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
17+
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
1818
"LOCATION": "trololololol",
1919
},
2020
"docs-pages": {
21-
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
21+
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
2222
"LOCATION": "docs-pages",
2323
},
2424
}

0 commit comments

Comments
 (0)