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:17 -0400 |
| commit | f3cd0a009ec0ed4e705ee25c5fcf60f4c2ba02f8 (patch) | |
| tree | 648c4205ce385f3d3a9128895b3a2db10c119975 /docs/topics/cache.txt | |
| parent | e125984394eaca8be82ed6f1ad10075ecd13e806 (diff) | |
[1.6.x] Clarified that LocMemCache is per-process; refs #7639.
Thanks projectgus for the suggestion.
Backport of c37000ab04 from master
Diffstat (limited to 'docs/topics/cache.txt')
| -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 3be6a57169..06532b23e5 100644 --- a/docs/topics/cache.txt +++ b/docs/topics/cache.txt @@ -278,8 +278,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': { |
