小编Zer*_*ool的帖子

Zend框架清除缓存

我正在使用此代码在zend框架中缓存数组:

$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
Run Code Online (Sandbox Code Playgroud)

现在我该如何手动清除缓存?

php caching zend-framework

5
推荐指数
1
解决办法
2万
查看次数

标签 统计

caching ×1

php ×1

zend-framework ×1