doctrine and large amount of data(学说和大量数据)
问题描述
我有一个返回约 50k 行的查询,似乎学说将整个结果放入内存中超出内存限制(128M)我发现节省一些内存的唯一解决方案是
i have a query that returns ~50k rows, seems like doctrine put this whole result into memory what exceeds memory limit(128M) the only solution i found that saves some memory is
$result->execute(array(), Doctrine_Core::HYDRATE_NONE);
但仍然超出限制,有没有什么方法可以一次读一行的教义?
but it still exceeds the limit, is there any way to read one row at a time with doctrine ?
推荐答案
Doctrine 文档 - 13. 批处理
更新:对于 1.2,请查看此页面:http://docs.doctrine-project.org/projects/doctrine1/en/latest/en/manual/data-hydrators.html
Update: For 1.2 check out this page: http://docs.doctrine-project.org/projects/doctrine1/en/latest/en/manual/data-hydrators.html
在按需"标题下,您会找到答案.
Under the "On Demand" heading you will find the answer.
这篇关于学说和大量数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:学说和大量数据
基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01