Magento不缓存警报

时间:2011-11-09 15:50:41

标签: magento

我在Magento商店安装了此扩展程序:http://www.magentocommerce.com/magento-connect/catalogcache.html

它确实改善了目录列表的页面加载时间。问题是警报不再显示。例如,如果有人订阅在产品重新库存时收到通知,则会在页面重新加载时显示“已成功添加警报”消息。

有谁知道如何阻止缓存提醒?

以下是扩展程序中的代码:

    class Netresearch_CatalogCache_Block_Product_View extends Mage_Catalog_Block_Product_View
/**
 * replace this parent class by your inhereted version of th Product_View Block
 * e.g. class Netresearch_CatalogCache_Block_Product extends MyNameSpace_MyModule_Catalog_Block_Product_View
 */
{
    protected function _isCacheActive()
    {
        if(!Mage::getStoreConfig('catalog/frontend/cache_view')) {
            return false;
        }

        /* if there are any messages dont read from cache to show them */
        if(Mage::getSingleton('core/session')->getMessages(true)->count() > 0) {
            return false;
        }


        return true;
    }

    public function getCacheLifetime()
    {
        if($this->_isCacheActive())
        {
            return false;
        }
    }
/*
    protected function _loadCache()
    {
        $cache = parent::_loadCache();
        Mage::debug($cache===false? "computed":"from cache");
        return $cache;
    }
*/
    public function getCacheKey()
    {
        if(!$this->_isCacheActive()) {
            parent::getCacheKey();
        }
        $_taxCalculator = Mage::getModel('tax/calculation');
        $_customer = Mage::getSingleton('customer/session')->getCustomer();
        $_product = $this->getProduct();
        return 'ProductView'.
            /* Create differnet caches for ...
             * ... for different products */
            $_product->getId().'_'.
            /* ... for different stores */
            Mage::App()->getStore()->getCode().'_'.
            /* ... for different customer groups */
            $_customer->getGroupId().'_'.
      /* ADD CURRENCY CODE TO ID */
      Mage::app()->getStore()->getCurrentCurrencyCode().'_'.
            /* ... for different tax classes (related to customer and product) */
            $_taxCalculator->getRate(
                $_taxCalculator
                    ->getRateRequest()
                    ->setProductClassId($_product->getTaxClassId()
                )
            ).'_'.
            '';
    }


    public function getCacheTags()
    {
        if(!$this->_isCacheActive()) {
            return parent::getCacheTags();
        }
        return array(
            Mage_Catalog_Model_Product::CACHE_TAG,
            Mage_Catalog_Model_Product::CACHE_TAG."_".$this->getProduct()->getId()
        );

    }
}

我在这里问了一个关于商店货币的类似问题,并得到了解决方案: Magento - Don't Cache Currency

3 个答案:

答案 0 :(得分:1)

我不使用此模块,但已经为Magento进行了缓存,并使用下面的代码来避免系统消息缓存。这对你有用吗?然后你可以尝试:

protected function _isCacheActive()
{
    if(!Mage::getStoreConfig('catalog/frontend/cache_view')) {
        return false;
    }

    /* if there are any messages dont read from cache to show them */
    if($this->getMessagesBlock()->getGroupedHtml()) {
        return false;
    }


    return true;
}

答案 1 :(得分:0)

似乎正在检查Mage::getSingleton('core/session')是否显示可用消息,很可能是新闻稿模块将消息写入Mage::getSingleton('customer/session')所以它也需要进行检查

答案 2 :(得分:0)

实际上,只要有人加入购物车,我的缓存就会被淘汰。在进一步调查中,我发现“Mage_Core_Block_Template”具有默认的CACHE_GROUP ='block_html',它是Mage_Core_Block_Product_view的父类。因此,在创建任何购物车时,block_html会从magento中刷出,但这并不能解决问题。

我理解是正确的还是我错过了什么?