2009/6/2 Martin Martinov <[email protected]>: > 2009/6/2 Jonathan Maron <[email protected]>: >> You can search through the ZF library with the following. It will show >> you all classes that include "setCache": >> >> find -name "*.php" | xargs grep -H "function setCache(" 2> /dev/null >> >> The result is as follows: >> >> ./Zend/Paginator.php: public static function setCache(Zend_Cache_Core >> $cache) >> ./Zend/Locale.php: public static function setCache(Zend_Cache_Core $cache) >> ./Zend/Locale/Data.php: public static function >> setCache(Zend_Cache_Core $cache) >> ./Zend/Currency.php: public static function setCache(Zend_Cache_Core >> $cache) >> ./Zend/Translate.php: public static function setCache(Zend_Cache_Core >> $cache) >> ./Zend/Translate/Adapter.php: public static function >> setCache(Zend_Cache_Core $cache) >> >> As you can see, not all the classes you list have a setCache method :-) >> > > So maybe that means that your search is not precise enough? ;-)
Thx guys, looks like I have most of them then :) > >> >> On Tue, Jun 2, 2009 at 8:53 AM, Jonathan Maron >> <[email protected]> wrote: >>> One more: Zend_Locale_Data::setCache($cache); >>> >>> >>> >>> On Tue, Jun 2, 2009 at 7:55 AM, keith Pope <[email protected]> wrote: >>>> Hi, >>>> >>>> I am putting together a list of components that support caching, have >>>> I missed any from this list? >>>> >>>> • Zend_Db_Table >>>> • Zend_Loader_PluginLoader >>>> • Zend_Paginator >>>> • Zend_Locale >>>> • Zend_Translate >>>> • Zend_XmlRpc_Server >>>> • Zend_Currency >>>> • Zend_Date >>>> >>>> Thx >>>> >>>> Keith >>>> >>> >> > > > > -- > Regards, > Martin Martinov > http://mmartinov.com/ > -- ---------------------------------------------------------------------- [MuTe] ----------------------------------------------------------------------
