Ticket #6086: global_settings_locmem.diff

File global_settings_locmem.diff, 452 bytes (added by Paul Bissex, 16 years ago)

Patch to make global_settings.py use "locmem" instead of "simple", per Malcolm's comment

  • django/conf/global_settings.py

     
    293293
    294294# The cache backend to use.  See the docstring in django.core.cache for the
    295295# possible values.
    296 CACHE_BACKEND = 'simple://'
     296CACHE_BACKEND = 'locmem://'
    297297CACHE_MIDDLEWARE_KEY_PREFIX = ''
    298298CACHE_MIDDLEWARE_SECONDS = 600
    299299
Back to Top