我正在开发一个Django
用于django-pipeline
处理浏览器文件缓存问题(以及其他好处)的应用程序。
STATIC_URL = '/static/'
STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
STATICFILES_DIRS = (
os.path.join(PROJECT_ROOT, 'bower'),
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'pipeline.finders.PipelineFinder',
'pipeline.finders.CachedFileFinder',
)
PIPELINE = {}
PIPELINE['DISABLE_WRAPPER'] = True
PIPELINE['JS_COMPRESSOR'] = 'pipeline.compressors.NoopCompressor'
PIPELINE['CSS_COMPRESSOR'] = 'pipeline.compressors.yuglify.YuglifyCompressor'
PIPELINE['COMPILERS'] = (
'pipeline.compilers.sass.SASSCompiler',
'pipeline.compilers.es6.ES6Compiler',
)
PIPELINE['JAVASCRIPT'] = {
...
}
PIPELINE['STYLESHEETS'] = {
...
}
PIPELINE['SASS_BINARY'] = 'C:\\Ruby22-x64\\bin\\sass.bat'
PIPELINE['BABEL_BINARY'] = 'c:\\Users\\Foobar\\node_modules\\.bin\\babel.cmd'
到现在为止还挺好。最近我们决定使用 Django 的数据库缓存(https://docs.djangoproject.com/en/1.9/topics/cache/#database-caching)来缓存一些长时间运行的统计计算结果。
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
'LOCATION': 'django_dbcache',
}
}
我执行createcachetable
并创建了表。我将条目放入此表中,没有过期日期,因为我有自己的有效性检查,并且可以自行决定数据是最新的还是需要重新计算。
然而令我惊讶的是,当我发出collectstatic
for时pipeline
,它会擦除该表的内容并用它自己的staticfiles:{md5code}
键值填充它。(在生产中,我看到了没有消灭一切的情况)。但这会使我的缓存方案不起作用。我似乎在管道文档中找不到任何设置如何停止pipeline
这样做。pipeline
缓存中的缓存条目值非常短,仅包含生成文件的完整路径。这些条目的到期时间为几个小时。我不介意他们在那里,只是不要擦我的东西。
附加说明:我在 Windows 平台上(参见上面的管道设置),但同样的事情发生在 Linux 生产服务器上。
除了标记的答案:知道任何人都可以弄乱默认缓存+静态文件可以粗鲁地清除它,最好将我们和其他人分开:
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'LOCATION': 'default-cache',
},
'staticfiles': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'LOCATION': 'static-files',
},
'my_dbcache': {
'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
'LOCATION': 'django_dbcache',
}
}