Zend Framework Effacer La Mémoire Cache

Je suis en utilisant ce code à cache un tableau dans zend framework :

$frontendOptions = array(
    'lifetime' => 24 * 3600 * 7, //cache lifetime of 7 day
    'automatic_serialization' => true
);

$backendOptions = array(
    //Directory where to put the cache files
    'cache_dir' => APPLICATION_PATH .'/../tmp'
);

//getting a Zend_Cache_Core object
$cache = Zend_Cache::factory('Core',
    'File',
    $frontendOptions,
    $backendOptions);

$CacheName = ('VOUCHER_MANAGEMENT');

$CacheResult = $cache->load($CacheName);

if($CacheResult === false)
    //make cache
else 
    //use cache

Maintenant, comment puis-je effacer le cache manuellement?

OriginalL'auteur Zero Cool | 2013-04-21