From 83be04915f6713130af56bec566d52a42acd2438 Mon Sep 17 00:00:00 2001
From: Angus Gratton <angus.gratton@anu.edu.au>
Date: Thu, 8 Mar 2012 12:13:42 +1100
Subject: [PATCH] Clarify LocMemCache being per-process Refs #7639
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 99d764b..d51f418 100644
a
|
b
|
Local-memory caching
|
289 | 289 | |
290 | 290 | If you want the speed advantages of in-memory caching but don't have the |
291 | 291 | capability of running Memcached, consider the local-memory cache backend. This |
292 | | cache is multi-process and thread-safe. To use it, set |
| 292 | is a per-process thread-safe cache. To use it, set |
293 | 293 | :setting:`BACKEND <CACHES-BACKEND>` to |
294 | 294 | ``"django.core.cache.backends.locmem.LocMemCache"``. For example:: |
295 | 295 | |