是否从缓存中排除随机重定向?

时间:2011-05-30 作者:vurdlak

我刚刚部署了the W3 Total Cache plugin 在我的专用服务器上(moillusions.com), 但我不确定它是否已经工作了(服务器负载仍然很高)。

我有一个非常重要的random link generator: moillusions.com/?random. 但我不知道如何将其从缓存中排除?(因此,单击时始终是不同的链接)

2 个回复
SO网友:Noel Tock

使用jQuery或Javascript循环并随机选择一个链接,这样可以绕过缓存?

var messages = ["Good!", "Great!", "Awesome!", "Super!", "Nice!"];
function getMessage() {
   return messages[Math.floor(Math.random() * messages.length)];
}
发件人https://stackoverflow.com/questions/3419928/how-can-i-return-a-random-value-from-an-array

SO网友:Rarst

这个插件应该对服务器负载做些什么?

  • 这取决于您使用的缓存设置,好的缓存插件会尝试智能地跳过URL中带有查询参数的动态页面。

  • 相关推荐

    是否从缓存中排除随机重定向? - 小码农CODE - 行之有效找到问题解决它

    是否从缓存中排除随机重定向?

    时间:2011-05-30 作者:vurdlak

    我刚刚部署了the W3 Total Cache plugin 在我的专用服务器上(moillusions.com), 但我不确定它是否已经工作了(服务器负载仍然很高)。

    我有一个非常重要的random link generator: moillusions.com/?random. 但我不知道如何将其从缓存中排除?(因此,单击时始终是不同的链接)

    2 个回复
    SO网友:Noel Tock

    使用jQuery或Javascript循环并随机选择一个链接,这样可以绕过缓存?

    var messages = ["Good!", "Great!", "Awesome!", "Super!", "Nice!"];
    function getMessage() {
       return messages[Math.floor(Math.random() * messages.length)];
    }
    
    发件人https://stackoverflow.com/questions/3419928/how-can-i-return-a-random-value-from-an-array

    SO网友:Rarst

    这个插件应该对服务器负载做些什么?

  • 这取决于您使用的缓存设置,好的缓存插件会尝试智能地跳过URL中带有查询参数的动态页面。

  • 相关推荐