forked from wallabag/wallabag
Add doctrine clear after flush, thanks to @BitOne talk at Symfony Live
This commit is contained in:
@ -258,6 +258,7 @@ class PocketImport implements ImportInterface
|
||||
// flush every 20 entries
|
||||
if (($i % 20) === 0) {
|
||||
$this->em->flush();
|
||||
$this->em->clear();
|
||||
}
|
||||
++$i;
|
||||
}
|
||||
|
||||
@ -185,6 +185,7 @@ abstract class WallabagImport implements ImportInterface
|
||||
// flush every 20 entries
|
||||
if (($i % 20) === 0) {
|
||||
$this->em->flush();
|
||||
$this->em->clear();
|
||||
}
|
||||
++$i;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user