summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-07-02 10:12:43 -0400
committerTim Graham <timograham@gmail.com>2014-07-02 10:12:43 -0400
commitc37000ab04a1592ecb7436d45bd2b4b9d015c9b3 (patch)
tree4149cc5dbb11af5ff071f3e220b5803798d32cd6 /docs
parent3de4f8bab6509586d9e7283ea33f51d4729c8a13 (diff)
Clarified that LocMemCache is per-process; refs #7639.
Thanks projectgus for the suggestion.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/cache.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index d7f0da9e3d..4e1cc04863 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -296,8 +296,9 @@ Local-memory caching
This is the default cache if another is not specified in your settings file. If
you want the speed advantages of in-memory caching but don't have the capability
of running Memcached, consider the local-memory cache backend. This cache is
-multi-process and thread-safe. To use it, set :setting:`BACKEND <CACHES-BACKEND>`
-to ``"django.core.cache.backends.locmem.LocMemCache"``. For example::
+per-process (see below) and thread-safe. To use it, set :setting:`BACKEND
+<CACHES-BACKEND>` to ``"django.core.cache.backends.locmem.LocMemCache"``. For
+example::
CACHES = {
'default': {