Author: gabrielhurley Date: 2011-09-09 15:33:28 -0700 (Fri, 09 Sep 2011) New Revision: 16748
Modified: django/trunk/docs/topics/cache.txt Log: Fixed #16786 -- Minor cleanups in the memcached section of the caching topic guide. Thanks to jamesp for the report and patch. Modified: django/trunk/docs/topics/cache.txt =================================================================== --- django/trunk/docs/topics/cache.txt 2011-09-09 22:32:38 UTC (rev 16747) +++ django/trunk/docs/topics/cache.txt 2011-09-09 22:33:28 UTC (rev 16748) @@ -63,18 +63,19 @@ Memcached --------- -By far the fastest, most efficient type of cache available to Django, Memcached -is an entirely memory-based cache framework originally developed to handle high -loads at LiveJournal.com and subsequently open-sourced by Danga Interactive. -It's used by sites such as Facebook and Wikipedia to reduce database access and -dramatically increase site performance. +By far the fastest, most efficient type of cache available to Django, +Memcached__ is an entirely memory-based cache framework originally developed to +handle high loads at LiveJournal.com and subsequently open-sourced by Danga +Interactive. It is used by sites such as Facebook and Wikipedia to reduce +database access and dramatically increase site performance. -Memcached is available for free at http://memcached.org/. It runs as a -daemon and is allotted a specified amount of RAM. All it does is provide a -fast interface for adding, retrieving and deleting arbitrary data in the cache. -All data is stored directly in memory, so there's no overhead of database or -filesystem usage. +__ http://memcached.org/ +Memcached runs as a daemon and is allotted a specified amount of RAM. All it does is +provide a fast interface for adding, retrieving and deleting arbitrary data in +the cache. All data is stored directly in memory, so there's no overhead of +database or filesystem usage. + After installing Memcached itself, you'll need to install a memcached binding. There are several python memcached bindings available; the two most common are `python-memcached`_ and `pylibmc`_. @@ -1144,7 +1145,7 @@ and ``Last-Modified`` headers. * :class:`django.middleware.gzip.GZipMiddleware` compresses responses for all - moderns browsers, saving bandwidth and transfer time. + modern browsers, saving bandwidth and transfer time. Order of MIDDLEWARE_CLASSES =========================== -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
