如何在Symfony2中使容器缓存无效?

时间:2013-11-15 06:41:04

标签: php symfony

我的部分Symfony应用程序配置是从旧数据库加载的,因此有时我需要使容器缓存无效以使用更新的数据。

是否有任何API可以通过编程方式使Symfony容器缓存失效?

1 个答案:

答案 0 :(得分:10)

  1. 根据CacheClearCommand

    $filesystem   = $this->container->get('filesystem');
    $realCacheDir = $this->container->getParameter('kernel.cache_dir');
    $this->container->get('cache_clearer')->clear($realCacheDir);
    $filesystem->remove($realCacheDir);
    
  2. 直接从代码中调用CacheClearCommand:

    <强> services.yml

    clear_cache_command_service:
        class: Symfony\Bundle\FrameworkBundle\Command\CacheClearCommand
        calls:
           - [setContainer, ["@service_container"] ]
    

    可能会做这样的事情(注意这会预热缓存):

    $clearCacheCommand = $this->container->get('clear_cache_command_service');
    $clearCacheCommand->run(new ArgvInput(), new ConsoleOutput());