8

Magento Enterprise 1.10.1.1を使用していますが、製品ページで動的コンテンツを取得する必要があります。現在の時刻をブロックに挿入して、動作しているかどうかをすばやく確認していますが、ページ全体のキャッシュを通過できないようです。

私はここにあるさまざまな実装を試しました:

http://tweetorials.tumblr.com/post/10160075026/ee-full-page-cache-hole-punching http://oggettoweb.com/blog/customizations-compatible-magento-full-page-cache/ http:/ /magentophp.blogspot.com/2011/02/magento-enterprise-full-page-caching.html

任意の解決策、考え、コメント、アドバイスを歓迎します。

これが私のコードです:

app / code / local / Fido / Example / etc / config.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Fido_Example>
            <version>0.1.0</version>
        </Fido_Example>
    </modules>
    <global>
        <blocks>
            <fido_example>
                <class>Fido_Example_Block</class>
            </fido_example>     
        </blocks>
    </global>
</config>

app / code / local / Fido / Example / etc / cache.xml

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <placeholders>
        <fido_example>
            <block>fido_example/view</block>
            <name>example</name>
            <placeholder>CACHE_TEST</placeholder>
            <container>Fido_Example_Model_Container_Cachetest</container>
            <cache_lifetime>86400</cache_lifetime>
        </fido_example>
    </placeholders>
</config>

app / code / local / Fido / Example / Block / View.php

<?php

class Fido_Example_Block_View extends Mage_Core_Block_Template
{
    private $message;
    private $att;

    protected function createMessage($msg) {
        $this->message = $msg;
    }

    public function receiveMessage() {
        if($this->message != '') {
            return $this->message;
        } 
        else {
            $this->createMessage('Hello World');
            return $this->message;
        }
    }

    protected function _toHtml() {
        $html = parent::_toHtml();

        if($this->att = $this->getMyCustom() && $this->getMyCustom() != '') {
            $html .= '<br />'.$this->att;
        } 
        else {

        $now = date('m-d-Y h:i:s A');
        $html .= $now;
        $html .= '<br />' ;
        }

        return $html;
    }

}

app / code / local / Fido / Example / Model / Container / Cachetest.php

<?php

class Fido_Example_Model_Container_Cachetest extends Enterprise_PageCache_Model_Container_Abstract { 

    protected function _getCacheId()
    {
        return 'HOMEPAGE_PRODUCTS' . md5($this->_placeholder->getAttribute('cache_id') . $this->_getIdentifier());
    }

    protected function _renderBlock()
    {
        $blockClass = $this->_placeholder->getAttribute('block');
        $template = $this->_placeholder->getAttribute('template');

        $block = new $blockClass;
        $block->setTemplate($template);
        return $block->toHtml();
    }

protected function _saveCache($data, $id, $tags = array(), $lifetime = null) { return false; }  

}

app / design / frontend / entity / [mytheme] /template/example/view.phtml

<?php echo $this->receiveMessage() ?>

app / design / frontend / entity /[mytheme]/layout/catalog.xmlからのスニペット

<reference name="content">
    <block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
            <block type="fido_example/view" name="product.info.example"  as="example" template="example/view.phtml" />
4

1 に答える 1

15

cache.xmlの<name>は、エイリアスではなく、レイアウト内のブロックのフルネームと一致する必要があります。<name>product.info.example</name>

また、に_getIdentifier()は実装されていません。Enterprise_PageCache_Model_Container_Abstractによって返される文字列から削除するだけ_getCacheId()です。いくつかのバリアントを追加する必要がある場合は_getIdentifier()、セッションIDまたは必要なものを返すように実装します。

于 2011-11-15T07:55:46.130 に答える