我正在尝试编写一个 laravel 函数,该函数从一个数据库中获取大量记录(100,000+)并将其放入另一个数据库中。为此,我需要查询我的数据库并查看用户是否已经存在。我反复调用这段代码:
$users = User::where('id', '=', 2)->first();
然后在这种情况发生了几百次之后,我的内存就用完了。所以,我做了一个使用所有可用内存的极简示例,它看起来像这样:
<?php
use Illuminate\Console\Command;
class memoryleak extends Command
{
protected $name = 'command:memoryleak';
protected $description = 'Demonstrates memory leak.';
public function fire()
{
ini_set("memory_limit","12M");
for ($i = 0; $i < 100000; $i++)
{
var_dump(memory_get_usage());
$this->external_function();
}
}
function external_function()
{
// Next line causes memory leak - comment out to compare to normal behavior
$users = User::where('id', '=', 2)->first();
unset($users);
// User goes out of scope at the end of this function
}
}
这个脚本的输出(由 'php artisan command:memoryleak' 执行)看起来像这样:
int(9298696)
int(9299816)
int(9300936)
int(9302048)
int(9303224)
int(9304368)
....
int(10927344)
int(10928432)
int(10929560)
int(10930664)
int(10931752)
int(10932832)
int(10933936)
int(10935072)
int(10936184)
int(10937320)
....
int(12181872)
int(12182992)
int(12184080)
int(12185192)
int(12186312)
int(12187424)
PHP Fatal error: Allowed memory size of 12582912 bytes exhausted (tried to allocate 89 bytes) in /Volumes/Mac OS/www/test/vendor/laravel/framework/src/Illuminate/Database/Connection.php on line 275
如果我注释掉“$users = User::where('id', '=', 2)->first();”这一行 然后内存使用保持稳定。
有没有人知道为什么这条线会使用这样的内存,或者知道一种更聪明的方法来完成我想要做的事情?
感谢您的时间。