summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorÅke Forslund <ake.forslund@gmail.com>2013-09-23 00:48:43 +0200
committerTim Graham <timograham@gmail.com>2013-09-23 10:50:19 -0400
commit6a30075eaa52b3d91665195a34901ac450df5bbb (patch)
treedb0609be0ec9f092ff72ca095383789c308697ef /docs
parent98e0453f00958af63b50e70990903eb6a04e1933 (diff)
Fixed #21140 -- Added 'Using cached sessions' to the performance guide.
Thanks EvilDMP for the suggestion.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/performance.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/topics/performance.txt b/docs/topics/performance.txt
index d015558b32..1c1ed86762 100644
--- a/docs/topics/performance.txt
+++ b/docs/topics/performance.txt
@@ -272,6 +272,17 @@ time. Note that GZipMiddleware is currently considered a security risk, and is
vulnerable to attacks that nullify the protection provided by TLS/SSL. See the
warning in :class:`~django.middleware.gzip.GZipMiddleware` for more information.
+Sessions
+--------
+
+:ref:`Using cached sessions <cached-sessions-backend>`
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+:ref:`Using cached sessions <cached-sessions-backend>` may be a way to increase
+performance by eliminating the need to load session data from a slower storage
+source like the database and instead storing frequently used session data in
+memory.
+
Static files
------------