以编程方式清除 Zend Page 缓存

发布于 2024-10-16 01:38:01 字数 71 浏览 1 评论 0原文

我正在对某些 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨光如昨 2024-10-23 01:38:01

在更新特定 URL 处显示的数据的方法中,您必须调用清理方法。
例如,如果您的缓存中有 URL“/dog”,并使用该 id(“/log”)保存,则当此页面的数据更改时,您必须执行:

$cache->remove('/dog');

我喜欢这个: 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:

$cache->remove('/dog');

And I loved this: http://devzone.zend.com/article/4457

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文