dqd54099 2018-09-15 20:14
浏览 129
已采纳

多个SELECT查询中的PDO / mysqli内存泄漏

I have a memory leak when executing many (20,000) simple SELECT operations using PDO or mysqli.

// test2.php
$i = 0;
while (true) {

    $pdo->query("SELECT 1 as m");
    file_put_contents(__FILE__ . '.log', 'Memory: ' . memory_get_usage_in_mb() . PHP_EOL, FILE_APPEND);
    // In test2.php.log
    // ([line]: [message]):
    // 1:     Memory: 0.39
    // 5000:  Memory: 0.44
    // 10000: Memory: 0.51
    // 20000: Memory: 0.63

    if ($i === 20000) {
        break;
    }
    $i++;
}

Plese see full test code at https://gist.github.com/NewEXE/ca4f5ddbeb7ff863b8c775c238698c57

I also tried PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => false with $pdo::closeCursor call after each query and this code on mysqli case:

$result = $mysqli->query("SELECT 1 as m", MYSQLI_USE_RESULT); // and MYSQLI_STORE_RESULT too...

// with and without this lines:
$result->free_result();
$result = null;
unset($result);
  • Server: nginx/1.13.6
  • PHP: 7.2.7-1+ubuntu16.04.1+deb.sury.org+1
  • MySQL: 5.7.21-0ubuntu0.16.04.1
  • pdo_mysql: Client API version - mysqlnd 5.0.12-dev - 20150407
  • mysqli: Client API library version - mysqlnd 5.0.12-dev - 20150407

Sorry for my english and thank you in advance!

  • 写回答

2条回答 默认 最新

  • douhuan9289 2018-09-18 19:27
    关注

    I disabled xDebug and the problem is solved!

    Tnanks to this answer: https://stackoverflow.com/a/43359644/8927920

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 随机森林与房贷信用风险模型
  • ¥50 buildozer打包kivy app失败
  • ¥30 在vs2022里运行python代码
  • ¥15 不同尺寸货物如何寻找合适的包装箱型谱
  • ¥15 求解 yolo算法问题
  • ¥15 虚拟机打包apk出现错误
  • ¥15 用visual studi code完成html页面
  • ¥15 聚类分析或者python进行数据分析
  • ¥15 三菱伺服电机按启动按钮有使能但不动作
  • ¥15 js,页面2返回页面1时定位进入的设备