如何优化Magento 2块缓存寿命? TTL

时间:2018-10-18 13:09:34

标签: php caching block magento2 ttl

对于高负载服务器,Magento 2块的缓存寿命是否有任何可用的设置?

我的意思是每种块类型:边栏,页眉,页脚,类别,产品等。

例如,应为标题块,内容块,侧边栏块设置什么值? 60秒,300秒还是360000秒?

1 个答案:

答案 0 :(得分:0)

默认情况下,每个缓存的块都有一个缓存生存期(请参见\Magento\Framework\View\Element\AbstractBlock::getCacheLifetime)。
这些将通过无效调用或在您手动清理/刷新缓存(cli或admin后端)时刷新。

更多信息:

Magento 2 Dev Guide: Manage the Cache

How the full page works in Magento 2