diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-01-03 23:41:31 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-01-03 23:41:31 +0000 |
| commit | 6cca806943790a586a059bd2dacdf5d54e5f601d (patch) | |
| tree | 4d29003a24e5f09ee4f0a141141597a938a72bb6 /docs/cache.txt | |
| parent | 839bcfe33059e43c382bdc5204cd08fa185a0bd6 (diff) | |
Added 'dummy' cache backend
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1815 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/cache.txt')
| -rw-r--r-- | docs/cache.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/cache.txt b/docs/cache.txt index 8f81514e66..09e201a202 100644 --- a/docs/cache.txt +++ b/docs/cache.txt @@ -47,6 +47,12 @@ Examples: locmem:/// A more sophisticated local memory cache; this is multi-process- and thread-safe. + + dummy:/// **New in Django development version.** + Doesn't actually cache; just implements the + cache backend interface and doesn't do + anything. This is an easy way to turn off + caching for a test environment. ============================== =========================================== All caches may take arguments -- they're given in query-string style. Valid |
