MongoDB 游标和内存

发布于 2024-11-27 06:18:27 字数 205 浏览 0 评论 0原文

当我在 php 中使用 mongo DB 游标时:

$Cursor = \MyDocument::find();

foreach ($Cursor as $Document)
    $Document->doSomething();

内存中是否只留下最后一个 $Document 还是我必须从游标对象中删除构建的文档?

When I use a mongo DB cursor in php:

$Cursor = \MyDocument::find();

foreach ($Cursor as $Document)
    $Document->doSomething();

Is there then only left the last $Document in the memory or do I have to remove the built documents from the cursor object?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

‖放下 2024-12-04 06:18:27

基本上,只有 $Document 会位于内存中,这是 foreach 迭代中的当前内存。

只要您没有遇到实际内存问题,我就会保留这个简化的描述。

另请参阅: MongoDB - 为什么我应该使用游标而不是 iterator_to_array(在 PHP 中)

MongoCursor 类文档也解释了这一点。

Basically, only $Document will be in memory which is the current one inside the foreach iteration.

As long as you're not running into actual memory problems, I would leave it with this simplified description.

See as well: MongoDB - Why should I use a cursor instead of iterator_to_array (in PHP).

The MongoCursor class documentation explains this as well.

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