Hi,
I am clearing cache for single extbase controller actions by:

       /** @var $cacheManager \TYPO3\CMS\Core\Cache\CacheManager */
       $cacheManager = 
\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Core\\Cache\\CacheManager');
       $cacheManager->getCache('cache_pages')->flushByTag('TAG_NAME_' . 
$product->getUid());
       $cacheManager->getCache('cache_pagesection')->flushByTag('TAG_NAME_' . 
$product->getUid());

Of course earlier I am adding those tags in extbase controller. But that part 
works fine - cache is cleared. But what is the problem is the fact that images 
generated in those views are not flushed and generated again. How to force 
cache clearing to clear also images-cache?
_______________________________________________
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Reply via email to