系统相关
首页 > 系统相关> > PHP-Symfony任务-内存泄漏

PHP-Symfony任务-内存泄漏

作者:互联网

我写了一个symfony任务来填充示例数据数据库.这是示例代码:

gc_enable();
Propel::disableInstancePooling();

public function test()
{
    for($i = 0; $i < 10000; $i++) {
        $this->doIt($i);
    }
}

public function doIt($i)
{
    $user = new User();
    $user->setUsername('user' . $i . "@example.com");
    $user->setPassword('test');
    $user->setFirstName('firstname' . $i);
    $user->setLastName('surname' . rand(0, 1000));

    $user->save();
    $user->clearAllReferences(true);
    $user = null;
    gc_collect_cycles();
}

如何限制内存的使用?

解决方法:

您在an other thread on SO中有一些不错的技巧.

这是关于memory leak using propel的非常好的博客文章.它是法语的,但确实很有趣.

而且,如果您正在处理大数据(例如海量导入),则还应该查看pcntl_fork(see this gist). pcntl_fork在Windows上不起作用.我使用这种方法来处理大量的导入操作,它的速度非常快,而且不会占用您的所有内存.

标签:propel,php,memory-leaks,symfony1
来源: https://codeday.me/bug/20191009/1880764.html