学说 entitymanager clear 不完全清楚 [英] Doctrine entitymanager clear doesn't fully clear

查看:24
本文介绍了学说 entitymanager clear 不完全清楚的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这段代码:

$entityManager->clear('RezaMyBundleEntityListItem');

$identity = $entityManager->getUnitOfWork()->getIdentityMap();
foreach ($identity as $class => $objectlist) {
    if ($class == 'RezaMyBundleEntityListItem') {
        print "didn't fully clear, exiting..
 ";
        exit;
    }
}

您可能会认为,在我将类名传递给 clear 之后,您不应该再在工作单元中看到这些对象,但是通过查看源代码,我注意到当您将参数传递给 clear() 函数它只分离该类型的实体.另一方面,如果我不向 clear() 传递任何参数,它会分离并且实际上会清除,所以上面的代码不会到达第 138 行,退出.这意味着它不仅分离了所有实体,而且还清除了工作单元.

You would think that after I pass in the classname to clear, you should not see those objects in the unit of work anymore, but by looking at the source I noticed that when you pass an argument to the clear() function it only detaches entities of that type. On the other hand, if I don't pass any arguments to clear() it detaches and does in fact clear, so the above code does not hit line 138, exit. So that means it not only detaches all entities, but also clears the unit of work.

有人对此有任何想法吗?我应该提交关于教义的错误吗?

Anyone has any thoughts on this? Should I file a bug with doctrine?

推荐答案

我会说从技术上讲这不是一个错误,因为 clear() 按照文档中的描述工作,请参阅 Doctrine2 API, 文档源代码 (当前版本).

I would say that technically it is not a bug as clear() works as described in the documentation, see Doctrine2 API, documentation and source code (current version).

clear() 方法只是一种detach() 指定类型的所有实体或实体的方法.它可以被认为是Multi-Detach",它的目的并没有超越分离.

The clear() method is just a way to detach() all entities or entities of a specified type. It can be thought as a "Multi-Detach", its purpose does not extend past detaching.

当使用 clear() 分离所有实体时,Doctrine 使用最有效的方法分离实体.在这个过程中,Identity Map Array 被设置为一个空的 array().这将使我相信您所指的内容看起来已清除.

When detaching all entities using clear() Doctrine detaches the entities using the most efficient method possible. In the process the Identity Map Array is set to an empty array(). This will give the appearance of what I believe you are referring to as cleared.

$entityManager->clear();
$identity = $entityManager->getUnitOfWork()->getIdentityMap(); 
//This will return a an empty array() to $identity
//therefore $identity['RezaMyBundleEntityListItem'] would be undefined

如果我们假设为 RezaMyBundleEntityListItem 的实体检索数据.那么在下面的例子中我们可以看到工作单元至少有1个RezaMyBundleEntityListItem对象.

If we assume that data was retrieved for an entity of RezaMyBundleEntityListItem. Then in the following example we can see that the unit of work has at least 1 RezaMyBundleEntityListItem object.

$identity = $entityManager->getUnitOfWork()->getIdentityMap();
$count = count($identity['RezaMyBundleEntityListItem']);
// $count would be > 0;

但是,当您使用 clear($entityName) 并按实体类型清除时,清除/分离的实体会从工作单元中移除,它只是数组键 [$entityName] 仍然存在,而不是任何对象.

However, when you use clear($entityName) and clear by entity type, the cleared/detached entities are removed from the unit of work, it is only the array key [$entityName] that remains, not any of the objects.

$entityManager->clear('RezaMyBundleEntityListItem');
$identity = $entityManager->getUnitOfWork()->getIdentityMap(); 
$count = count($identity['RezaMyBundleEntityListItem']);
//$count would be == 0. All Objects cleared/detached.

此功能由文档指定.

我确实认为功能请求是有必要的,以使其工作更加一致.当调用 clear($entityName) Doctrine 应该 unset() 剩余的键,从而使其未定义(清除).这将使我们能够更轻松地编写无论我们使用 clear() 还是 clear($entityName) 都可以工作的代码.

I do think a feature request is in order, to make it work more consistently. When invoking clear($entityName) Doctrine should unset() the remaining key thereby making it undefined (cleared). This would allow us to more easily write code that would work whether we used clear() or clear($entityName).

这篇关于学说 entitymanager clear 不完全清楚的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆