Ticket #7639: 0001-Clarify-LocMemCache-being-per-process-Refs-7639.diff

File 0001-Clarify-LocMemCache-being-per-process-Refs-7639.diff, 796 bytes (added by projectgus, 12 years ago)

Possible docs patch for LocMemCache "multi-process"

  • docs/topics/cache.txt

    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  
    289289
    290290If you want the speed advantages of in-memory caching but don't have the
    291291capability of running Memcached, consider the local-memory cache backend. This
    292 cache is multi-process and thread-safe. To use it, set
     292is a per-process thread-safe cache. To use it, set
    293293:setting:`BACKEND <CACHES-BACKEND>` to
    294294``"django.core.cache.backends.locmem.LocMemCache"``. For example::
    295295
Back to Top