summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-02 05:47:25 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-02 05:47:25 +0000
commit1a5588fcebbd0b5689773eb27b9a648d8cfb2aba (patch)
tree50a2b27c4f7b5fb62051c19aa032fbcd947802ed
parent024917783680492f67e8f94fc9104b454e98a498 (diff)
[1.0.X] Small edit to the caching docs.
Turns out, super-lightning is not faster than normal lightning. :-) Backport of r9949 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9950 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/topics/cache.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 92e0c9c044..06b2cbe2e0 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -63,7 +63,7 @@ dramatically increase site performance.
Memcached is available for free at http://danga.com/memcached/ . It runs as a
daemon and is allotted a specified amount of RAM. All it does is provide an
-interface -- a *super-lightning-fast* interface -- for adding, retrieving and
+interface -- a *lightning-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.