3

我正在使用具有整页缓存功能的 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),

    ));
}

也许我在整页缓存机制中遗漏了一些东西?

4

3 回答 3

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 变量。我相信当什么都没有真正改变时,这可以节省一个块的冗余重新加载。

我在其他教程中没有发现的是我必须创建布局变量并将其分配给我的块,否则我只会得到我的块而不是整个页面。

于 2013-05-31T11:41:58.930 回答
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 的请求。

您还可以参考: http: //mikebywaters.wordpress.com/2011/12/14/disable-magento-full-page-cache-on-a-per-controller-basis/

于 2013-05-31T08:09:07.547 回答
0

cache_lifetime 必须设置为 null 以禁用此块的缓存

public function __construct()
 {
    $this->addData(array(
    ‘cache_lifetime’ => null,       
   ));
 }
于 2014-07-30T08:25:08.443 回答