如果 url 中存在查询字符串,则跳过/绕过 SERVER 缓存文件/缓存?
我有一个名为 index.php
的主页,它提供了 10 个项目/产品的列表。
现在,我使用相同的页面作为来自 facebook 的传入流量的登陆页面。 url 类似于 index.php?productID=Q231
此页面仅显示带有指定 ID 的产品。
我知道 PHP 输出缓存,但我是新手。我了解到,如果我缓存 index.php
,它将为来自 facebook 的所有传入流量提供相同的缓存文件。
- 我的理解正确吗?我对此进行了很多搜索,但我不清楚如何使用此实例进行缓存。
- 如果 url 中有查询字符串,是否有办法跳过或绕过服务器缓存文件/缓存?
如果有人能给我一些指示,我将不胜感激。
I have a home page as index.php
and it gives a list of 10 items/ products.
Now, I am using the same page as landing page for inward traffic from facebook.
The url looks like index.php?productID=Q231
This page displays the product carrying the specified ID only.
I am aware of PHP output caching but I am new. I have learned that if I cache index.php
, it will serve the same cached file to all the inward traffic from facebook.
- Is my understanding correct? I have searched a lot about this but i am not clear as to how would one go about caching with this instance.
- Is there a a way to skip or bypass the server cache file/caching if there's a query string in the url?
I would greatly appreciate if anyone could give me some pointers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这实际上取决于您的缓存模型以及您如何在代码中处理它。
如果您使用输出缓冲创建整个内容,您可能需要使用以下方法:
谷歌搜索会显示以下基本示例:
http://www.devshed.com/c/a/ PHP/使用 PHP 进行输出缓存/
It really depends on your caching model and how you handle this in your code.
If you are creating the whole thing using output buffering you may want to use a method such as:
Googling brings up this rudimentary example:
http://www.devshed.com/c/a/PHP/Output-Caching-with-PHP/
如果我没有记错的话,缓存不是基于引荐来源网址的。 php内部缓存只是为了优化代码,不会像ie那样缓存。 “外部”缓存系统,例如 smarty 中的内置缓存,输出。我认为您只需要“禁用”浏览器缓存,这意味着使用
header(...)
发送正确的标头if i'm not mistaken caching is not based on referrer. Internal php caching is only to optimize code, it will not cache, as ie. 'external' caching systems, like inbuild caching in smarty for example, output. I think you'd only need to 'disable' caching for browsers, which will mean, send the proper headers with
header(...)
您正在使用输出缓存。然后,当您的 Facebook 或 Twitter 链接被调用时,您应该清除缓存。在 codeigniter(PHP 框架)中,我通过清除缓存来完成此操作。
在核心 PHP 中,我不知道如何清除缓存。但必须有一些方法来清除缓存。所以尝试一下吧。
这里的一些链接可能对您有用。
如何使用php清除浏览器缓存?
http://php.net/manual/en/function.clearstatcache.php
http://www.dreamincode.net/forums/topic/6519-clear-cache /
You are using output caching. Then you should clear cache when your facebook or twitter links called. IN codeigniter(Framework of PHP), I have done this by clearing cache.
In core PHP, I don't know how to clear cache. But there must be some methods to clear cache. So try for that.
Here some links may be useful to you.
How to clear browser cache with php?
http://php.net/manual/en/function.clearstatcache.php
http://www.dreamincode.net/forums/topic/6519-clear-cache/