[執筆:Konstantin G]{class="badge informative" title="コンスタンチン G."}
ワニス ESI ブロック
Edge サイドインクルード (ESI)は、他の web ページに web ページを含めるために使用できる特別なディレクティブです。
例:
<div>
<esi:include src="http://domain.com/index.php/page_cache/block/esi/blocks"/>
</div>
Varnish は 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