Memory leak when executing Doctrine query in loop(在循环中执行 Doctrine 查询时的内存泄漏)
问题描述
我无法在脚本中找到内存泄漏的原因.我有一个简单的存储库方法,它将我的实体中的计数"列增加 X 数量:
I'm having trouble in locating the cause for a memory leak in my script. I have a simple repository method which increments a 'count' column in my entity by X amount:
public function incrementCount($id, $amount)
{
$query = $this
->createQueryBuilder('e')
->update('MyEntity', 'e')
->set('e.count', 'e.count + :amount')
->where('e.id = :id')
->setParameter('id', $id)
->setParameter('amount', $amount)
->getQuery();
$query->execute();
}
问题是,如果我在循环中调用它,每次迭代时内存使用量都会激增:
Problem is, if I call this in a loop the memory usage balloons on every iteration:
$entityManager = $this->getContainer()->get('doctrine')->getManager();
$myRepository = $entityManager->getRepository(MyEntity::class);
while (true) {
$myRepository->incrementCount("123", 5);
$doctrineManager->clear();
gc_collect_cycles();
}
我在这里缺少什么?我试过 ->clear()
,按照 Doctrine 的 关于批处理的建议.我什至尝试了 gc_collect_cycles()
,但问题仍然存在.
What am I missing here? I've tried ->clear()
, as per Doctrine's advice on batch processing. I even tried gc_collect_cycles()
, but still the issue remains.
我在 PHP 5.5 上运行 Doctrine 2.4.6.
I'm running Doctrine 2.4.6 on PHP 5.5.
推荐答案
我通过在命令中添加 --no-debug
解决了这个问题.事实证明,在调试模式下,分析器将有关每个查询的信息存储在内存中.
I resolved this by adding --no-debug
to my command. It turns out that in debug mode, the profiler was storing information about every single query in memory.
这篇关于在循环中执行 Doctrine 查询时的内存泄漏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在循环中执行 Doctrine 查询时的内存泄漏


基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01