Zend Cache Front end



我在Bootstrap.php中使用这个函数来缓存我的控制器,我需要缓存一些控制器,我不需要缓存索引控制器和文章控制器作为一个例子我需要缓存问题控制器,但它不起作用。这个函数缓存了所有的控制器

protected function _initCache()
{
    mb_internal_encoding("UTF-8");
    $dir = "/var/www/data/cache/all";
   $frontendOptions = array(
        'lifetime' => 3600,
        'content_type_memorization' => true,
        'default_options'           => array(
        'cache' => true,
        'cache_with_get_variables' => true,
        'cache_with_post_variables' => true,
        'cache_with_session_variables' => true,
        'cache_with_cookie_variables' => true,
        ),
    'regexps' => array(
             '^/$' => array('cache' => false),
            "^/question/" => array('cache' => true),
            "^/article/" => array('cache' => false),
             )
    );
    $backendOptions = array(
            'cache_dir' =>$dir
    );
    // getting a Zend_Cache_Frontend_Page object
    $cache = Zend_Cache::factory('Page',
                         'File',
                         $frontendOptions,
                         $backendOptions);
    $cache->start();
}

所以我能做什么我尝试了所有的解决方案,请帮助我。由于

用该代码创建一个控制器插件,并检测请求。类似…

if($request->getControllerName() == 'index' || ... == 'article') {
return;
}
mb_internal_encoding("UTF-8");
...

相关内容

  • 没有找到相关文章

最新更新