In bootstrap I am registering cache obj
$cache = Zend_Cache::factory('Core','File',$frontendOptions,$backendOptions);
Zend_Registry::set('cache',$cache);
When I try to retrieve in model class ,It return the object but I am not able to get the list of function related to cache in my IDE.I was thinking atleast public method will get listed..
$this->_cache->load return false !
can you please help whats could possibly be wrong?.
Regards