Hi I have the db resource defined in application.ini like this:
resources.db.adapter = "pdo_pgsql" resources.db.params.host = "localhost" resources.db.params.username = "pgadmin" resources.db.params.password = "********" resources.db.params.dbname = "cmspg" resources.db.isDefaultTableAdapter = true I have a _initCache method in Bootstrap class where I'm setting the cache (Zend_Db_Table_Abstract::setDefaultMetadataCache($cache) ) but I am thinking about creating a cachemanager resource. With cachemanager resource, what's the best way to set the db metadata cache? An _initDbCache() method in Bootstrap.php for example? Cheers, holo
