Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网络应用程序为目录提供降价转换,比如:
file = 'foo.md' html = parse_markdown_file(file) render_to_response(html)
现在我想为每个文件缓存 html 结果,我可以用 Beaker 来做。但是,我想在文件更新时使缓存无效。但是不知道什么时候更新。
我有一个想法,我可以对文件的最后修改时间使用缓存依赖,但不知道如何使用 Beaker 执行此操作。仅供参考:我使用金字塔和烧杯。
在这种情况下我该怎么办?