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

发布于 2024-10-18 07:49:17 字数 186 浏览 0 评论 0原文

mongo 类的 PHP 文档说 使用光标 而不是 < code>iterator_to_array 更优越。

为什么?我将从中获得什么好处/灵活性?

The PHP documentation for the mongo class says using a cursor instead of iterator_to_array is superior.

Why? What benefits/flexibility will I get from that?

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

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

发布评论

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

评论(1

诠释孤独 2024-10-25 07:49:17

使用 iterator_to_array() 会使您的驱动程序立即将所有结果加载到内存中,并且您很容易耗尽内存。对于使用延迟加载的游标来说,情况并非如此!

直接来自链接的文档

<前><代码>find();
var_dump(iterator_to_array($cursor));

?>

...

假设在上面的示例中,$collection 是一个 50GB 的集合。我们当然不希望将其全部加载到内存中,这就是游标的用途:允许客户端一点一点地访问集合。

Using iterator_to_array() makes your driver load all of the results into memory at once, and you could easily run out of memory. This would not be the case with a cursor, which uses lazy-loading!

Straight from the linked docs:

<?php

$cursor = $collection->find();
var_dump(iterator_to_array($cursor));

?>

...

Suppose that, in the example above, $collection was a 50GB collection. We certainly wouldn't want to load that into memory all at once, which is what a cursor is for: allowing the client to access the collection in dribs and drabs.

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