CodeIgniter MySQL 查询使用太多内存 - 如何使用 MySQL 的 SSCursor?
我正在开发一个使用 CodeIgniter 进行数据库访问的应用程序。应用程序发出如下查询:$this->db->query("SELECT fields_list FROM table_name");
但该表有数十万条记录。
CodeIgniter 尝试将整个结果集加载到内存中,导致脚本达到内存限制。
解决此问题的方法是使用 libmysqlclient API 的 SSCursor,但我看不到任何使用 SSCursor 的 CodeIgniter 示例。有没有办法在CodeIgniter中使用MySQL的SSCursor?
I'm working on an application using CodeIgniter for database access. The application issues queries like these: $this->db->query("SELECT fields_list FROM table_name");
But the table has hundreds of thousands of records.
CodeIgniter tries to load the whole result set into memory, causing the script to reach memory limit.
The way around this issue is to use libmysqlclient API's SSCursor but I can't see any example of CodeIgniter using SSCursor. Is there a way to use MySQL's SSCursor in CodeIgniter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行 for 循环并限制在单个查询中检索的记录数。
获取表中的总记录数。然后做一个:
Do a for loop and limit the number of records retrieved in a single query.
Get a count of total records in the table. Then do a: