Ticket #16786: docs-topics-cache-cleanup.patch

File docs-topics-cache-cleanup.patch, 2.1 KB (added by jamesp, 13 years ago)
  • docs/topics/cache.txt

    diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
    index 10b63b7..4518353 100644
    a b settings file. Here's an explanation of all available values for  
    6363Memcached
    6464---------
    6565
    66 By far the fastest, most efficient type of cache available to Django, Memcached
    67 is an entirely memory-based cache framework originally developed to handle high
    68 loads at LiveJournal.com and subsequently open-sourced by Danga Interactive.
    69 It's used by sites such as Facebook and Wikipedia to reduce database access and
    70 dramatically increase site performance.
    71 
    72 Memcached is available for free at http://memcached.org/. It runs as a
    73 daemon and is allotted a specified amount of RAM. All it does is provide a
    74 fast interface for adding, retrieving and deleting arbitrary data in the cache.
    75 All data is stored directly in memory, so there's no overhead of database or
    76 filesystem usage.
     66By far the fastest, most efficient type of cache available to Django,
     67Memcached__ is an entirely memory-based cache framework originally developed to
     68handle high loads at LiveJournal.com and subsequently open-sourced by Danga
     69Interactive.  It is used by sites such as Facebook and Wikipedia to reduce
     70database access and dramatically increase site performance.
     71
     72__ http://memcached.org/
     73
     74Memcached runs as a daemon and is allotted a specified amount of RAM. All it does is
     75provide a fast interface for adding, retrieving and deleting arbitrary data in
     76the cache.  All data is stored directly in memory, so there's no overhead of
     77database or filesystem usage.
    7778
    7879After installing Memcached itself, you'll need to install a memcached
    7980binding. There are several python memcached bindings available; the
    site's performance:  
    11441145      and ``Last-Modified`` headers.
    11451146
    11461147    * :class:`django.middleware.gzip.GZipMiddleware` compresses responses for all
    1147       moderns browsers, saving bandwidth and transfer time.
     1148      modern browsers, saving bandwidth and transfer time.
    11481149
    11491150Order of MIDDLEWARE_CLASSES
    11501151===========================
Back to Top