Django

Code

Changeset 6588

Show
Ignore:
Timestamp:
10/21/07 14:10:10 (1 year ago)
Author:
mtredinnick
Message:

Tweaked the caching docs to be consistent about the format for database caches
(and fixed a formatting error).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/cache.txt

    r6580 r6588  
    120120 
    121121Once you've created that database table, set your ``CACHE_BACKEND`` setting to 
    122 ``"db://tablename/"``, where ``tablename`` is the name of the database table. 
    123 In this example, the cache table's name is ``my_cache_table``: 
     122``"db://tablename"``, where ``tablename`` is the name of the database table. 
     123In this example, the cache table's name is ``my_cache_table``:: 
    124124 
    125125    CACHE_BACKEND = 'db://my_cache_table'