summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormlissner <mlissner@michaeljaylissner.com>2013-11-21 17:54:27 -0800
committerTim Graham <timograham@gmail.com>2013-11-22 19:39:25 -0500
commitc456ea4ec88a0ab43179ccfe811cb6d8483a1db8 (patch)
treef53ab5d9cb936c6de7a1866f456b6b6737a7eb78
parentf0fc1690b4ab072c452d3d5230ea2c80ae726ea9 (diff)
Noted that localmem is the default cache.
-rw-r--r--docs/topics/cache.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 7f710613e9..abf4946cb5 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -289,11 +289,11 @@ user ``apache``.
Local-memory caching
--------------------
-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::
+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::
CACHES = {
'default': {