Skip to content
Snippets Groups Projects
Verified Commit 0ee3b8f1 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Allow disabling query caching

parent 1cc70628
Branches more-cachalot-fixes
No related tags found
1 merge request!964More cachalot fixes
Pipeline #54157 passed
......@@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_.
Unreleased
----------
Changed
~~~~~~~
* Allow disabling query caching with cachalot
Fixed
~~~~~
......
......@@ -273,6 +273,7 @@ DEBUG_TOOLBAR_PANELS.append("cachalot.panels.CachalotPanel")
CACHALOT_TIMEOUT = _settings.get("caching.cachalot.timeout", None)
CACHALOT_DATABASES = set(["default", "default_oot"])
SILENCED_SYSTEM_CHECKS += ["cachalot.W001"]
CACHALOT_ENABLED = _settings.get("caching.query_caching", True)
SESSION_ENGINE = "django.contrib.sessions.backends.cache"
SESSION_CACHE_ALIAS = "default"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment