以编程方式清除 Zend Page 缓存
我正在对某些 URL 使用 Zend 的全页缓存。有没有办法以编程方式清除某个URL的页面缓存....(当URL的内容被修改时)
I am using Zend's full page caching for certain URL's. Is there a way to clear the page cache for a certain URL programmatically....(when the content of the URL is modified)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在更新特定 URL 处显示的数据的方法中,您必须调用清理方法。
例如,如果您的缓存中有 URL“/dog”,并使用该 id(“/log”)保存,则当此页面的数据更改时,您必须执行:
我喜欢这个: http://devzone.zend.com/article/4457
On the method that does the update of the data shown at a certain URL, you have to call a cleanup method.
For example, if you have in cache the URL "/dog", saved with that id ("/log"), when the data of this page change you have to execute:
And I loved this: http://devzone.zend.com/article/4457