我可以从config.yml或parameters.yml覆盖缓存目录吗?或者设置一个config var并在AppKernel.php中使用它?
我看过,http://symfony.com/doc/current/cookbook/configuration/override_dir_structure.html#override-cache-dir
然而,在一个地方配置应用程序是一个更好的主意,config.yml。在示例中,需要修改AppKernel以更改目录。
我可以覆盖这样的东西,
public function getCacheDir()
{
return $this->config->cacheDir;
}