如何处理zend元数据缓存

时间:2012-10-26 13:04:37

标签: php zend-framework zend-cache

我正在开发一个在zend框架中开发的项目。已经工作的开发人员已使用zend metadata cache并使用zend函数info()来获取表的元数据。

现在我在表格中插入了一个新字段status。现在表格没有返回新字段。

创建缓存的代码如下

$frontendOptions = array(
        'automatic_serialization' => true,
        'lifetime' => 100000,
        'cache_id_prefix' => 'metaData_',
    );
    $backendOptions = array();
    $cache = Zend_Cache::factory(
        'Core', 
        'File',
        $frontendOptions,
        $backendOptions
    );
    Zend_Db_Table_Abstract::setDefaultMetadataCache($cache);

我尝试使用

删除缓存
$cache = Zend_Cache::factory();
Zend_Db_Table_Abstract::setDefaultMetadataCache($cache);
$cache->clean(Zend_Cache::CLEANING_MODE_ALL); 

有人可以告诉我如何处理这个问题吗?

0 个答案:

没有答案