Does anyone know how you can clear any specific caches for one individual store or website. We have a multi store install with about 20 different store fronts and I would like to see how we can programmatically clear a specific cache (like the block cache) but ONLY for a specific store.
I know how to clear a cache for just the blocks
Mage::app()->getCacheInstance()->cleanType('block_html');
Just not for a specific store.
Solved! Go to Solution.
Hi,
Magento manage the cache for all stores at same time, so you can't .
Hi,
Magento manage the cache for all stores at same time, so you can't .
Daniel is spot on. It is all or nothing in regards to the cache.