在引导程序中,我正在注册缓存 obj
$cache = Zend_Cache::factory('Core','File',$frontendOptions,$backendOptions);
Zend_Registry::set('cache',$cache);
当我尝试在模型类中检索时,它返回对象但我无法在我的 IDE 中获取与缓存相关的函数列表。我在想至少公共方法会被列出..
$this->_cache->load return false !
你能帮忙看看可能有什么问题吗?
问候