Add doctrine clear after flush, thanks to @BitOne talk at Symfony Live

This commit is contained in:
Nicolas Lœuillet 2016-04-13 14:46:31 +02:00
parent 0907a72c64
commit dc12084d93
2 changed files with 2 additions and 0 deletions

View File

@ -258,6 +258,7 @@ class PocketImport implements ImportInterface
// flush every 20 entries // flush every 20 entries
if (($i % 20) === 0) { if (($i % 20) === 0) {
$this->em->flush(); $this->em->flush();
$this->em->clear();
} }
++$i; ++$i;
} }

View File

@ -185,6 +185,7 @@ abstract class WallabagImport implements ImportInterface
// flush every 20 entries // flush every 20 entries
if (($i % 20) === 0) { if (($i % 20) === 0) {
$this->em->flush(); $this->em->flush();
$this->em->clear();
} }
++$i; ++$i;
} }