Changeset 9437
- Timestamp:
- 11/14/08 02:07:39 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/releases/1.0.X/docs/topics/cache.txt
r8995 r9437 73 73 74 74 * The fastest available option is a module called ``cmemcache``, available 75 at http://gijsbert.org/cmemcache/ . (This module is only compatible with 76 the Django development version. Django 0.96 is only compatible with the 77 second option, below.) 75 at http://gijsbert.org/cmemcache/ . 78 76 79 77 * If you can't install ``cmemcache``, you can install ``python-memcached``, … … 82 80 (http://www.danga.com/memcached/) and get the Python bindings from the 83 81 "Client APIs" section. 82 83 .. versionadded:: 1.0 84 The ``cmemcache`` option is new in 1.0. Previously, only 85 ``python-memcached`` was supported. 84 86 85 87 To use Memcached with Django, set ``CACHE_BACKEND`` to
