gpt4 book ai didi

php - 如何在 Symfony 2 中缓存?

转载 作者:IT王子 更新时间:2023-10-29 00:53:06 26 4
gpt4 key购买 nike

我需要使用 Symfony 2 的缓存系统来缓存一些特定于应用程序的数据,以便我可以运行 cache:clear 来清除它。所有缓存都依赖于 app/cache 但实际上我该如何缓存数据呢?

http://symfony.com/doc/current/cookbook/index.html

我看到的唯一主题是关于使用 Varnish 进行 HTML 缓存。

最佳答案

如果您已经在使用 Doctrine,只需使用这些缓存类即可。

config.yml 添加服务:

services:
cache:
class: Doctrine\Common\Cache\ApcCache

并在你的 Controller 中使用它:

if ($fooString = $this->get('cache')->fetch('foo')) {
$foo = unserialize($fooString);
} else {
// do the work
$this->get('cache')->save('foo', serialize($foo));
}

关于php - 如何在 Symfony 2 中缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8893081/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com