对于高负载服务器的Magento 2块缓存生命周期,是否有任何现成的设置?我的意思是对于每种块类型:侧边栏、页眉、页脚、类别、产品等。例如,应该为标题块、内容块、边栏块设置什么值?60秒、300秒还是360000秒?
laik7k3q1#
默认情况下,缓存的每个块都有一个缓存生存期(请参见\Magento\Framework\View\Element\AbstractBlock::getCacheLifetime)。这些缓存将由无效调用刷新,或者在您手动清理/刷新缓存(cli或管理后端)时刷新。更多信息:Magento 2 Dev Guide: Manage the CacheHow the full page works in Magento 2
\Magento\Framework\View\Element\AbstractBlock::getCacheLifetime
1条答案
按热度按时间laik7k3q1#
默认情况下,缓存的每个块都有一个缓存生存期(请参见
\Magento\Framework\View\Element\AbstractBlock::getCacheLifetime
)。这些缓存将由无效调用刷新,或者在您手动清理/刷新缓存(cli或管理后端)时刷新。
更多信息:
Magento 2 Dev Guide: Manage the Cache
How the full page works in Magento 2