Doctrine transactions - 计算未决请求的数量
Doctrine transactions - count number of pending requests
有没有办法在启动提交操作之前找出事务中待处理请求的数量?
只有当我收到足够数量的查询时我才想启动我的提交(在我的特定情况下我不能一一计算...)
好的,我在 UOF 中找到了这个
http://www.doctrine-project.org/api/orm/2.3/source-class-Doctrine.ORM.UnitOfWork.html#3134
所以这个方法可以完成工作
count($em->getUnitOfWork()->getScheduledEntityInsertions())
有没有办法在启动提交操作之前找出事务中待处理请求的数量?
只有当我收到足够数量的查询时我才想启动我的提交(在我的特定情况下我不能一一计算...)
好的,我在 UOF 中找到了这个
http://www.doctrine-project.org/api/orm/2.3/source-class-Doctrine.ORM.UnitOfWork.html#3134
所以这个方法可以完成工作
count($em->getUnitOfWork()->getScheduledEntityInsertions())