1

我正在尝试使用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

谢谢!

4

1 回答 1

2

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

于 2014-02-02T13:46:09.183 回答