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.
我想禁用模板系统 Dwoo 中的缓存。 只是为了我的开发模式。 但后来我尝试调用setcache ()或修改 Dwoo 类,但没有任何效果。 有人有想法吗? 谢谢
setcache ()
你说的是哪个缓存?
Dwoo 有一个已编译的模板缓存(默认情况下dwoo/compiled),这是基于自动重新生成的filemtime(),您不需要照顾它。
dwoo/compiled
filemtime()
然后是输出缓存,默认情况下它是停用的,所以如果你有问题,你应该在你的应用程序逻辑中处理它,并cacheLength在开发模式下强制为 0。
cacheLength
现在可以forceCompilation();对任何Dwoo_Template_File
forceCompilation();
Dwoo_Template_File