Is it correct behaviour for django-compressor to still output the compressed file in the COMPRESS_ROOT folder even when Memcached is enabled?
In the docs it says:
For production sites it is strongly recommended to use a real cache backend such as memcached to speed up the checks of compressed files.
My cache in Django is set up correctly and working.
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.PyLibMCCache',
'LOCATION': '127.0.0.1:11211',
}
}
What I'm seeing is, with memcached enabled, if I delete the STATIC_ROOT folder, django-compressor does not regenerate the js/css files anymore. Anyone else see this bahaviour?