我正在尝试优化使用Symfony 2表单在导入过程中验证数据的导入操作,有点像这个简单的例子:
/// For each imported row
foreach ($importedData as $row) {
$user = new User;
$userType = new UserType;
// !! The 250 KB of memory allotted in this line is never released again !!
$form = $symfonyFormFactory->create($userType, $user);
// This line allots a bunch of memory as well,
// but it's released when the EM is flushed at the end
$form->bind($row);
if (!$form->isValid()) {
// Error handling
}
$entityManager->persist($user);
$entityManager->flush();
}
这些循环中的每一个,内存使用量都增加了大约250 KB,这对于大量导入而言正在瘫痪。
我发现内存泄漏来自$form = $symfonyFormFactory->create(new UserType, $user);
行。
编辑:实体管理器正在使用大部分内存,而不是表单组件(请参阅接受的答案)。但是循环仍然是每个循环55 KB,这比250 KB好,但可能会更好。就在今天。
答案 0 :(得分:2)
尝试禁用SQL日志记录以减少内存使用量
$entityManager->getConnection()->getConfiguration()->setSQLLogger(null)
我也发现了类似问题here
答案 1 :(得分:0)
您确定不想发布实体对象吗?首先,不要在每次迭代中刷新数据。让我们说坚持50个对象 - 我不知道你的导入数据有多大 - 并将它们冲洗在一起,然后通过简单地调用$ entityManager-> clear()来清除对象;