Allowed memory size of 134217728 bytes exhausted (tried to allocate 4294967296 bytes)

前端 未结 4 1189
逝去的感伤
逝去的感伤 2020-12-03 19:08

My project uses an open source PHP MySQL library https://github.com/ajillion/PHP-MySQLi-Database-Class

But the project mid-year report: \"Fatal error: Allowed memory

4条回答
  •  遥遥无期
    2020-12-03 19:22

    I read this bug report here: https://bugs.php.net/bug.php?id=51386

    Your problem seems to happen because there is a longblob or longtext in the columns of the table.

    longtext / longblob have a maximum length of 4294967295 [4GB] thats why mysqli tries to allocated that memory for the buffer to be sure nothing is lost. I would suggest that you use mediumtext (16777215 [16MB] max length), that should be enough for everything usually.

    Update: Because this answer has seen some activity I add this solution from Phil_1984 (see comments)

    I use mysqli and after reading that quote from php dev, adding a $stmt->store_result(); between execute and bind_result seems to fix the issues for me

    => If you use $stmt->store_result() you can use mysqli with longblob / longtext without getting the error.

    -

    Old Answer: I suggest that you either change the column to another type (mediumtext) or use PDO (i think it doesnt have that problem). but if you want to keep the column as longtext, you have to switch your mysql library

    Quote from PHP Dev:

    This is a known limitation of ext/mysqli when using libmysql (always in 5.2 and previous) and when libmysql is enabled with 5.3 . The reason is that the server sends not too specific metadata about the column. This longtext has a max length of 4G and ext/mysqli tries to bind with the max length, to be sure no data loss occurs (data doesn't fit in the bind buffer on C level). However, that means 4G for a longtext/longblob column. ext/mysqli has been changed to have a way to work around that. You need to call mysqli_stmt_store_result() which will store the data locally, which means, of course a higher memory usage for PHP. However, because you use libmysql this won't hit the PHP's memory limit, for sure. During store_result the max_length of every column will be calculated and then when bind_result is executed only a buffer with size of max_length will be allocated, which will be definitely lower than 4G. In short, prepare execute store_result bind_result fetch...fetch...fetch

提交回复
热议问题