http://docs.phalconphp.com/en/0.6.0/reference/di.html
public/index.php で、コーディング:
$di->set('viewCache', function(){
//Cache data for one day by default
$frontCache = new Phalcon\Cache\Frontend\Output(array(
"lifetime" => 86400
));
//Memcached connection settings
$cache = new Phalcon\Cache\Backend\File($frontCache, array(
"cacheDir" => "../apps/caches/"
));
return $cache;
});
コントローラーでは、this->view->cache() を使用できますが、viewCache をサービスの命名規則に含めないのはなぜですか?