diff options
| author | Tim Graham <timograham@gmail.com> | 2014-07-02 10:12:43 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-07-02 10:14:11 -0400 |
| commit | a56773245b8926ddb73d957cf725aa83c5e5a9ea (patch) | |
| tree | 9496273e768d5d3b08c9253b1f4139112973929d /docs | |
| parent | e88723acf8eb0c8f13a0285baea477ec8a40a3bd (diff) | |
[1.7.x] Clarified that LocMemCache is per-process; refs #7639.
Thanks projectgus for the suggestion.
Backport of c37000ab04 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/cache.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt index 0d8f957d52..6970ee85e2 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': { |
