According to the documentation , one call to the remove() method is enough, i.e. delete specific cache element:
$cache->remove($CacheName);
If you want to clear obsolete cache elements, call the clean() method:
$cache->clean(Zend_Cache::CLEANING_MODE_OLD);
To delete all items in the cache:
$cache->clean(Zend_Cache::CLEANING_MODE_ALL);
source share