循环中的doctrine_record::free()方法的奇怪行为
大家好,
我在 Doctrine_Query::execute() 中循环了很多关系,我得到了 记录每次迭代。没问题。
为了节省内存,我想 free() 记录内存使用情况 Doctrine_Record::free()。
第一次迭代,没问题,但在下一次迭代中,我的新对象 松散的关系。 示例:
$q = Doctrine_Query::create()
->From(..)
->leftJoin(...)
->innerJoin(Relationship)
->where(...)
->andWhere(...);
foreach($q->execute() as $r)
{
$val = $r->Relationship->get(colx);
$r->free(true);
}
在第二次迭代时,我得到新记录,但没有innerJoin关系???
任何想法...
谢谢你的建议
Hie all,
I loop in Doctrine_Query::execute() with many relations and i get a
record on each iteration. No problem.
To save memory, i would like free() record memory usage with
Doctrine_Record::free().
The first iteration, no problem but at the next one my new object
loose relation.
Example :
$q = Doctrine_Query::create()
->From(..)
->leftJoin(...)
->innerJoin(Relationship)
->where(...)
->andWhere(...);
foreach($q->execute() as $r)
{
$val = $r->Relationship->get(colx);
$r->free(true);
}
At the second iteration, i get new record but without innerJoin Relationship ???
Any idea...
Thanks for your advice
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如方法注释和 API 参考 中所述
您不应使用
free()
,特别是如果您打算随后使用该记录。唯一需要使用它的情况是,如果您正在加载大量记录并且需要释放内存。As it states in the method comments and the API reference
You shouldn't use
free()
, especially if you intend to use the record afterwards. The only case you should need to use it is if you're loading an extremely large number of records and you need to free up memory.