[由Konstantin G提供。]{class="badge informative" title="康斯坦丁G."}

清漆ESI块

Edge Side Include (ESI)是特殊指令,可用于将网页包含在其他网页中。

示例:

<div>
  <esi:include src="http://domain.com/index.php/page_cache/block/esi/blocks"/>
</div>

清漆从http://domain.com/index.php/page_cache/block/esi/blocks中获取内容,并用它替换<esi>标记。

Commerce和清漆ESI

Commerce框架会在满足以下条件时创建ESI标记:

  • 缓存应用程序设置为Varnish Cache
  • 已添加具有ttl特性的XML布局block元素

示例

cms_index_index.xml

  <referenceContainer name="content">
      <block class="Magento\Framework\View\Element\Template" template="Magento_Paypal::esi.phtml" ttl="30"/>
   </referenceContainer>

在上述示例中,block元素将来自esi.phtml模板的内容添加到主页,Varnish每30秒自动更新一次。

限制

目前,Varnish不支持通过HTTPS进行ESI,因此会自动切换到HTTP。

Magento\PageCache\Observer\ProcessLayoutRenderElement

    private function _wrapEsi(
        \Magento\Framework\View\Element\AbstractBlock $block,
        \Magento\Framework\View\Layout $layout
    ) {
    ....
        // Varnish does not support ESI over HTTPS must change to HTTP
        $url = substr($url, 0, 5) === 'https' ? 'http' . substr($url, 5) : $url;
        return sprintf('<esi:include src="%s" />', $url);
    }
recommendation-more-help
386822bd-e32c-40a8-81c2-ed90ad1e198c