Enhancement: Use cached sessions for a minor performance improvement (#9074)

This commit is contained in:
Trenton H 2025-02-11 08:18:19 -08:00 committed by GitHub
parent ba5705a54f
commit 2b2115e5f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -510,6 +510,8 @@ SESSION_EXPIRE_AT_BROWSER_CLOSE = not ACCOUNT_SESSION_REMEMBER
SESSION_COOKIE_AGE = int(
os.getenv("PAPERLESS_SESSION_COOKIE_AGE", 60 * 60 * 24 * 7 * 3),
)
# https://docs.djangoproject.com/en/5.1/ref/settings/#std-setting-SESSION_ENGINE
SESSION_ENGINE = "django.contrib.sessions.backends.cached_db"
if AUTO_LOGIN_USERNAME:
_index = MIDDLEWARE.index("django.contrib.auth.middleware.AuthenticationMiddleware")