循环中的doctrine_record::free()方法的奇怪行为

发布于 2024-12-06 07:25:45 字数 531 浏览 0 评论 0原文

大家好,

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥醉 2024-12-13 07:25:45

正如方法注释和 API 参考 中所述

帮助释放实体占用的内存。剪切该实体对其他实体的所有引用,并从实例池中删除该实体。注意:调用 free() 后该实体将不再可用。 事后对该实体进行的任何操作都可能导致不可预测的结果。

您不应使用free(),特别是如果您打算随后使用该记录。唯一需要使用它的情况是,如果您正在加载大量记录并且需要释放内存。

As it states in the method comments and the API reference

Helps freeing the memory occupied by the entity. Cuts all references the entity has to other entities and removes the entity from the instance pool. Note: The entity is no longer useable after free() has been called. Any operations done with the entity afterwards can lead to unpredictable results.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文