summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Hurley <gabehr@gmail.com>2011-09-09 22:33:28 +0000
committerGabriel Hurley <gabehr@gmail.com>2011-09-09 22:33:28 +0000
commit6ce463aadb50bbc53378a7efc512ea265da9f601 (patch)
tree0cc9c453c5c7f5825c24e5f8a673b2a6b1a7f715
parentfe88584589922c1a0e068f18c82fe1b17e437fcd (diff)
Fixed #16786 -- Minor cleanups in the memcached section of the caching topic guide. Thanks to jamesp for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16748 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/topics/cache.txt23
1 files changed, 12 insertions, 11 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 10b63b7b04..4518353e15 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -63,17 +63,18 @@ settings file. Here's an explanation of all available values for
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
@@ -1144,7 +1145,7 @@ site's performance:
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
===========================