gpt4 book ai didi

php - 如何阻止 Doctrine 2 在 Symfony 2 中缓存结果?

转载 作者:IT王子 更新时间:2023-10-29 01:21:11 27 4
gpt4 key购买 nike

我希望能够检索实体的现有版本,以便将其与最新版本进行比较。例如。编辑一个文件,我想知道在数据库中之后该值是否发生了变化。

    $entityManager = $this->get('doctrine')->getEntityManager();
$postManager = $this->get('synth_knowledge_share.manager');

$repository = $entityManager->getRepository('KnowledgeShareBundle:Post');
$post = $repository->findOneById(1);

var_dump($post->getTitle()); // This would output "My Title"
$post->setTitle("Unpersisted new title");

$existingPost = $repository->findOneById(1); // Retrieve the old entity

var_dump($existingPost->getTitle()); // This would output "Unpersisted new title" instead of the expected "My Title"

有谁知道我怎样才能绕过这个缓存?

最佳答案

这是正常的行为。

Doctrine 将检索到的实体的引用存储在 EntityManager 中,因此它可以通过实体的 ID 返回一个实体,而无需执行另一个查询。

你可以这样做:

$entityManager = $this->get('doctrine')->getEntityManager();
$repository = $entityManager->getRepository('KnowledgeShareBundle:Post');
$post = $repository->find(1);

$entityManager->detach($post);

// as the previously loaded post was detached, it loads a new one
$existingPost = $repository->find(1);

但请注意,由于 $post 实体已分离,如果您想再次保留它,则必须使用 ->merge() 方法。

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

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