如果您已经在使用Doctrine,则只需使用这些缓存类。
将服务添加到
config.yml:
services: cache: class: DoctrineCommonCacheApcCache
并在您的控制器中使用它:
if ($fooString = $this->get('cache')->fetch('foo')) { $foo = unserialize($fooString);} else { // do the work $this->get('cache')->save('foo', serialize($foo));}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)