我正在使用具有完整页面缓存功能的magento EE。有一个动态更新的块,但我似乎无法禁用其缓存。 理想情况下我想要实现的目的:仅对特定块禁用缓存,以便每次页面加载时再次渲染。 我试过的事情:
将unsetData包含在布局文件中
<action method="unsetData"><key>cache_lifetime</key></action>
<action method="unsetData"><key>cache_tags</key></action>
设置函数_saveCache以返回false
protected function _saveCache($data, $id, $tags = array(), $lifetime = null) {
return false;
}
为cache_lifetime
public function __construct()
{
$this->addData(array(
‘cache_lifetime’ => 0,
‘cache_tags’ => array(Mage_Catalog_Model_Product::CACHE_TAG),
));
}
也许我在整页缓存机制中缺少一些东西?
答案 0 :(得分:4)
好吧,我发现了一些好的帖子并使用etc/cache.xml
实现了我的缓存,它用容器对象包装我的块。
我的cache.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<config>
<placeholders>
<namespace_block_unique_node>
<block>module/block_class</block>
<name>name_of_block_in_my_layout</name>
<template>path/to/my/template</template>
<placeholder>UNIQUE_PLACEHOLDER_HERE</placeholder>
<container>Namespace_Module_Model_Caching_Container_BlockName</container>
<cache_lifetime>86400</cache_lifetime>
</namespace_block_unique_node>
</placeholders>
</config>
我在这里使用了block
不应该缓存的块,在我的布局中作为块的name
名称,以及container
我选择了我的容器。
容器代码:
<?php
class Namespace_Module_Model_Caching_Container_BlockName extends Enterprise_PageCache_Model_Container_Abstract
{
protected function _getCacheId()
{
return 'NAMESPACE_MODULE_BLOCKNAME' . $this->_getIdentifier();
}
protected function _getIdentifier()
{
return microtime();
}
protected function _renderBlock()
{
$blockClass = $this->_placeholder->getAttribute('block');
$template = $this->_placeholder->getAttribute('template');
$block = new $blockClass;
$block->setTemplate($template);
$layout = Mage::app()->getLayout();
$block->setLayout($layout);
return $block->toHtml();
}
protected function _saveCache($data, $id, $tags = array(), $lifetime = null) { return false;}
}
这里我将microtime()
函数用于识别块,但在我的模块中我使用了与我的模块相关的cookie变量。我相信当没有真正改变时,可以节省冗余的块重新加载。
我在其他教程中没有找到的东西是我必须创建布局变量并将其分配给我的块,否则我只得到我的块而不是整页。
答案 1 :(得分:2)
以下是为特定控制器禁用FPC的解决方案(也可以扩展到特定操作)。
首先创建一个Observer来侦听controller_action_predispatch事件:
public function processPreDispatch(Varien_Event_Observer $observer)
{
$action = $observer->getEvent()->getControllerAction();
// Check to see if $action is a Product controller
if ($action instanceof Mage_Catalog_ProductController)
{
$request = $action->getRequest();
$cache = Mage::app()->getCacheInstance();
// Tell Magento to 'ban' the use of FPC for this request
$cache->banUse('full_page');
}
}
然后将以下内容添加到模块的config.xml文件中。这包括在以下部分:
<events>
<controller_action_predispatch>
<observers>
<YOUR_UNIQUE_IDENTIFIER>
<class>YOURMODULE/observer</class>
<method>processPreDispatch</method>
</YOUR_UNIQUE_IDENTIFIER>
</observers>
</controller_action_predispatch>
</events>
现在,Magento每次都会提供您的页面并绕过FPC请求。
答案 2 :(得分:0)
cache_lifetime必须设置为null才能禁用此块的缓存
public function __construct()
{
$this->addData(array(
‘cache_lifetime’ => null,
));
}