1

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 をサービスの命名規則に含めないのはなぜですか?

4

1 に答える 1

0

サービスには次のviewCacheようにアクセスできます。

// In controller
$this->view->cache();

また

// In controller 
$this->di->get('viewCache');

また

// In a module or other file
$di = \Phalcon\DI::getDefault();
$di->get('viewCache');
于 2012-11-06T13:42:08.813 に答える