Doctrine批处理不清除内存?

时间:2013-07-08 00:58:54

标签: symfony doctrine batch-processing

我正在尝试使用a technique suggested by Doctrine 2来处理大量对象。该技术表明,通过使用迭代器并在处理每次迭代后进行分离,应将内存使用量保持在最低限度(他们说处理10000条记录时会增加几KB)。

但是,当我尝试这样做时,我看不到任何对象被释放。事实上,我正在检索超过2000个资产,这使我的内存使用量增加了90 MB。显然,这些对象不会被释放。谁能告诉我我做错了什么?我的代码如下:

$profiles = //array of Profile entities 
$qb = $this->createQueryBuilder('a')
            ->addSelect('file')
            ->leftJoin($profileNodeEntityName, 'pn', JOIN::WITH, 'pn.icon = a OR pn.asset = a')
            ->leftJoin(
                $profileEntityName,
                'p',
                JOIN::WITH,
                'pn.profile = p OR p.logo = a OR p.background = a OR p.pricelistAsset = a OR p.pdfTplBlancAsset = a OR p.pdfTplFrontAsset = a OR p.pdfTplBackAsset = a'
            )
            ->innerJoin('a.currentFile', 'file')
            ->where('p IN (:profiles)')
            ->setParameter('profiles', $profiles)
            ->distinct(true);

        $iterableResult = $qb->getQuery()->iterate();

        $start = memory_get_usage() / 1024;
        while (($row = $iterableResult->next()) !== false) {
            // process $row[0]
            $this->getEntityManager()->detach($row[0]);
        }
        $end = memory_get_usage() / 1024 - $start;
        // $end is more of less equal to 90000 or 90 MB

谢谢!

1 个答案:

答案 0 :(得分:2)

您还应该分离相关实体,或者在关联上设置cascade = {“detach”}。