How to reduce PHP/MySQL memory consumption?

661 Views Asked by At

PHP 7, mysqli, Reference: Example of how to use bind_result vs get_result

I am using unbuffered fetching (I hope) and wonder about the memory consumption $m. As I just fetch (test case) I would expect the memory $m to be almost constant. But it is not, depending on how many rows I fetch it increases. I would expect that fetch result works like a cursor only getting 1 row at a time.

How would I achieve that (reading 1 row at a time)?

Remark: Here https://stackoverflow.com/a/14260423/356726 they use

$uresult = $mysqli->query("SELECT Name FROM City", MYSQLI_USE_RESULT);

but I have not found a way to pass MYSQLI_USE_RESULT somewhere in a prepared statement.

$result = $stmt->get_result(); // not stored I hope
$i = 0;
while ($row = $result->fetch_assoc()) {
    $i++;
    if ($i > 20000) {
        break;
    }
}
$m = memory_get_usage(); // see values between 10-50MB here, depending on i
$this->freeAndCloseStatement($stmt);
1

There are 1 best solutions below

1
On

There is an example on Mysql Documentation, so you don't put as parameter, just run a method.

<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");

/* check connection */
if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

$query  = "SELECT CURRENT_USER();";
$query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";

/* execute multi query */
if ($mysqli->multi_query($query)) {
    do {
        /* store first result set */
        if ($result = $mysqli->use_result()) { //<----------- THIS LINE
            while ($row = $result->fetch_row()) {
                printf("%s\n", $row[0]);
            }
            $result->close();
        }
        /* print divider */
        if ($mysqli->more_results()) {
            printf("-----------------\n");
        }
    } while ($mysqli->next_result());
}

/* close connection */
$mysqli->close();
?>

https://dev.mysql.com/doc/apis-php/en/apis-php-mysqli.use-result.html

For prepared statement you could set attribute as false.

$pdo->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, false);