如果 url 中存在查询字符串,则跳过/绕过 SERVER 缓存文件/缓存?

发布于 2024-12-27 22:21:36 字数 396 浏览 2 评论 0原文

我有一个名为 index.php 的主页,它提供了 10 个项目/产品的列表。

现在,我使用相同的页面作为来自 facebook 的传入流量的登陆页面。 url 类似于 index.php?productID=Q231 此页面仅显示带有指定 ID 的产品。

我知道 PHP 输出缓存,但我是新手。我了解到,如果我缓存 index.php,它将为来自 facebook 的所有传入流量提供相同的缓存文件。

  1. 我的理解正确吗?我对此进行了很多搜索,但我不清楚如何使用此实例进行缓存。
  2. 如果 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.

  1. 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.
  2. 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 技术交流群。

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

发布评论

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

评论(3

绾颜 2025-01-03 22:21:36

这实际上取决于您的缓存模型以及您如何在代码中处理它。

如果您使用输出缓冲创建整个内容,您可能需要使用以下方法:

  • 根据请求的脚本和/或请求参数生成缓存密钥,即在您的情况下使用productId
  • 检查是否已保存给定的输出某些持久存储的密钥
    • 如果是,则输出
    • 如果不是,则使用输出缓冲区,生成内容,保存到持久存储并保存在生成​​的缓存索引下,然后输出

谷歌搜索会显示以下基本示例:
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:

  • Generate Cache key based on requested script and/or request parameters i.e. using productId in your case
  • Check to see if you have saved the output for a given key to some persistent store
    • If yes, output
    • If no, then use an output buffer, generate the contents, save to a persistent store and save under the generated cache index, and output

Googling brings up this rudimentary example:
http://www.devshed.com/c/a/PHP/Output-Caching-with-PHP/

草莓味的萝莉 2025-01-03 22:21:36

如果我没有记错的话,缓存不是基于引荐来源网址的。 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(...)

ゝ偶尔ゞ 2025-01-03 22:21:36

您正在使用输出缓存。然后,当您的 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/

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