From c37000ab04a1592ecb7436d45bd2b4b9d015c9b3 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 2 Jul 2014 10:12:43 -0400 Subject: [PATCH] Clarified that LocMemCache is per-process; refs #7639. Thanks projectgus for the suggestion. --- docs/topics/cache.txt | 5 +++-- 1 file 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 ` -to ``"django.core.cache.backends.locmem.LocMemCache"``. For example:: +per-process (see below) and thread-safe. To use it, set :setting:`BACKEND +` to ``"django.core.cache.backends.locmem.LocMemCache"``. For +example:: CACHES = { 'default': {