Magento 缓存刷新通知

Magento cache refresh Notification

每当我在 magento 1 中添加或编辑目录时。9.x.x 我得到以下信息: "One or more of the Cache Types are invalidated: Layouts. Click here to go to Cache Management and refresh cache types."

这是 Magento 的默认行为。您可以使用像 'catalog_product_edit_action' 这样的观察者事件,并在观察者模型方法中使用这行代码:

Mage::app()->getCacheInstance()->cleanType('block_html');
      return $this;