gpt4 book ai didi

shopware - 在插件中停用 Shopware 5 中的 HTTP 缓存

转载 作者:行者123 更新时间:2023-12-01 00:32:00 27 4
gpt4 key购买 nike

在一个插件中,我需要为两个类别停用 Shopware HTTP-Cache。 manual说我应该发出这个事件:

Shopware()->Events()->notify(
'Shopware_Plugins_HttpCache_InvalidateCacheId',
array(
'cacheId' => 'a14',
)
);

a14 代表 ID 为 14 的文章。根据手册 a c 可用于取消缓存类别页面。所以我把它放在我的插件 bootstrap.php 中以停止缓存 ID 为 113 和 114 的类别:

public function afterInit()
{
Shopware()->Events()->notify(
'Shopware_Plugins_HttpCache_InvalidateCacheId',
array(
'cacheId' => 'c113',
'cacheId' => 'c114',
)
);
}

我已经在所有级别上手动清空了缓存,但是没有任何反应,无论好坏,没有抛出错误,并且清空后重建缓存时类别没有从缓存中删除。有人知道我应该更改什么吗?

这是完整的解决方案,感谢 Thomas 的回答,一切都在 Bootstrap.php 中完成:

首先订阅PostDispatch_Frontend_Listing事件:

public function install() 
{
$this->subscribeEvent('Enlight_Controller_Action_PostDispatch_Frontend_Listing', 'onPostDispatchListing');
return true;
}

其次创建一个在特定条件下发送 no-cache-header 的函数:

public function onPostDispatchListing(Enlight_Event_EventArgs $arguments)
{
$response = $arguments->getResponse();
$categoryId = (int)Shopware()->Front()->Request()->sCategory;
if ($categoryId === 113 || $categoryId === 114) {
$response->setHeader('Cache-Control', 'private, no-cache');
}
}

第三次安装或重新安装插件,这样对事件的订阅将保留在数据库中。

最佳答案

我认为最好的方法是添加一个插件,将 Cache-Control: no-cache header 添加到指定类别的响应中。设置此 header 后,类别不会存储在 HTTP 缓存中,您无需使其失效。

您可以监听 Enlight_Controller_Action_PostDispatch_Frontend_Listing 事件并检查类别 id 是否是您需要的,并将 header 添加到响应中。

$response->setHeader('Cache-Control', 'private, no-cache');

关于shopware - 在插件中停用 Shopware 5 中的 HTTP 缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34159110/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com