CodeIgniter MySQL 查询使用太多内存 - 如何使用 MySQL 的 SSCursor?

发布于 2024-12-11 06:20:23 字数 309 浏览 0 评论 0原文

我正在开发一个使用 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 技术交流群。

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

发布评论

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

评论(1

提赋 2024-12-18 06:20:23

执行 for 循环并限制在单个查询中检索的记录数。

获取表中的总记录数。然后做一个:

for ($i=0; $i<=COUNT_OF_RECORDS; $i+=1000) {
     $sql = "SELECT fields_list FROM table_name LIMIT $i,1000";
}

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:

for ($i=0; $i<=COUNT_OF_RECORDS; $i+=1000) {
     $sql = "SELECT fields_list FROM table_name LIMIT $i,1000";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文