gpt4 book ai didi

php - 简单的 mysql 选择查询允许的内存大小超过 256mb

转载 作者:可可西里 更新时间:2023-11-01 07:46:44 31 4
gpt4 key购买 nike

编辑:对于日后发现此问题的任何人来说,CI 会在这种情况下使用大量内存,因为它会为每一行创建一个对象(使用 result_array() 似乎也好不了多少),所以最好的选择只是使用 PHP 内置的 mysql 函数。如果您使用的是 MYSQLI,则可以像这样访问连接链接:

$this->db->conn_id

我正在尝试通过命令行运行一个脚本(测试什么将是一个 cronjob),脚本所做的是无关紧要的,因为它在第一次选择时失败并且没有得到任何进一步的结果。

我正在使用 Codeigniter 2.0.3。

我的表格是这样的:

CREATE TABLE IF NOT EXISTS `graphic_files` (
`graphic_file_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`graphic_file_style_id` tinyint(2) unsigned NOT NULL,
`graphic_file_fm_id` bigint(20) unsigned DEFAULT NULL,
`graphic_file_config_line` varchar(255) NOT NULL,
`graphic_file_config_line_hash` varchar(32) NOT NULL,
`graphic_file_location` varchar(255) DEFAULT NULL,
`graphic_file_pack_id` int(10) unsigned NOT NULL,
`graphic_file_enabled` tinyint(1) NOT NULL,
`graphic_file_alternative` tinyint(1) NOT NULL,
`graphic_file_version` decimal(4,2) NOT NULL,
`graphic_file_time_added` int(11) unsigned NOT NULL,
`graphic_file_time_modified` int(11) unsigned NOT NULL,
`graphic_file_size` int(11) unsigned NOT NULL,
PRIMARY KEY (`graphic_file_id`),
KEY `graphic_file_style_id` (`graphic_file_style_id`),
KEY `graphic_file_fm_id` (`graphic_file_fm_id`),
KEY `graphic_file_config_line_hash` (`graphic_file_config_line_hash`),
KEY `graphic_file_pack_id` (`graphic_file_pack_id`),
KEY `graphic_file_enabled` (`graphic_file_enabled`),
KEY `graphic_file_version` (`graphic_file_version`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=240752 ;

有 240,000 行。

我试图通过此查询选择其中的大约 120,000 个:

SELECT * FROM graphic_files WHERE graphic_file_enabled = 0 AND graphic_file_style_id = 5

但是我得到一个允许的内存大小错误,如下所示:

Allowed memory size of 268435456 bytes exhausted (tried to allocate 92 bytes) in xxx/codeigniter_2.0.3/database/drivers/mysqli/mysqli_result.php on line 167

我意识到简单的答案是内存不足,但这对于简单地执行选择查询来说似乎很荒谬,尤其是在允许的内存大小高达 256mb 的情况下。

任何人都可以提出一个原因吗?可能与 codeigniter 及其构建结果对象的方式有关吗?

最佳答案

好的,假设我们处理的是最小值(这里只使用声明的大小),每行数据都是 624 字节。这有点轻描淡写,因为许多可变宽度字段需要额外的空间来记录它们的实际大小。考虑到所有这些都将转换为内部 PHP 样式,我们可能可以在那里添加更多内容(结果作为数组返回,可能是散列,具体取决于设置)。但实际上,在一切都说完之后,我们可能要处理每条记录总共近 2kb 的数据。

此外,我们正在处理其中的 120,000 个。 120000 * 2048 = 245760000 字节 = 234.4 MB 数据。PHP 有它的开销,codeigniter 也有。总之,这足以让您突破内存限制。

如果您想更好地估计正在使用的内存量,请继续提高内存使用限制,然后在执行选择查询后,检查 memory_get_usage() .

要减少内存使用,您可以通过添加额外的 where 子句来减少所选择的行数,仅选择必要的列而不是所有列,或者使用 LIMIT 语句。如果你走 LIMIT 路线,你可以处理所有的记录和所有的列,但以 block 的形式。每个 select 语句可以返回有限数量的行,比如 100,但是您可以让每个后续调用从另一个停止的地方恢复。这样,您在给定时间内存中的数据永远不会超过 100 行。

关于php - 简单的 mysql 选择查询允许的内存大小超过 256mb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7825591/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com