有办法在Zend_db中缓存结果集吗?例如,我想使用Zend_db运行一个选择查询,并希望缓存该查询,以便以后能够更快地运行它。
我的建议是在Bootstrap.php中创建一个前缀为"_init"的初始化方法。例如:
/**
*
* @return Zend_Cache_Manager
*/
public function _initCache()
{
$cacheManager = new Zend_Cache_Manager();
$frontendOptions = array(
'lifetime' => 7200, // cache lifetime of 2 hours
'automatic_serialization' => true
);
$backendOptions = array(
'cache_dir' => APPLICATION_PATH . '/cache/zend_cache'
);
$coreCache = Zend_Cache::factory(
'Core',
'File',
$frontendOptions,
$backendOptions
);
$cacheManager->setCache('coreCache', $coreCache);
$pageCache = Zend_Cache::factory(
'Page',
'File',
$frontendOptions,
$backendOptions
);
$cacheManager->setCache('pageCache', $pageCache);
Zend_Registry::set('cacheMan', $cacheManager);
return $cacheManager;
}
通过这种方式,您已经创建了缓存管理器,并为其注入了应用程序中所需的缓存。现在,您可以在想要使用的位置使用此缓存对象。例如,在您的控制器中或其他位置:
/**
*
* @return boolean |SimplePie
*/
public function getDayPosts()
{
$cacheManager = Zend_Registry::get('cacheMan');
$cache = $cacheManager->getCache('coreCache');
$cacheID = 'getDayPosts';
if (false === ($blog = $cache->load($cacheID))) {
$blog = Blog::find(array('order' => 'rand()', 'limit' => 1));
$cache->save($blog, $cacheID);
}
// do what you want to do with the daya you fetched.
}
当您想要保存结果集时,可以使用Zend_Cache。
Zend_Db本身不进行任何结果集缓存。它留给你以特定于应用程序的方式来做,因为框架无法知道哪些结果集出于性能原因需要缓存,而那些不能缓存的结果集是因为你需要它们绝对是最新的。这些标准只有应用程序开发人员知道。
只是在谷歌上搜索"zend_db缓存结果"第一个匹配是这个博客,它展示了如何使用zend_cache对象来保存数据库查询结果:zend Framework:缓存数据库查询结果