INSERT 1 - 4.1240599155426
INSERT 2 - 2.9922580718994
INSERT 3 - 3.4141948223114
INSERT 4 - 2.9524540901184
INSERT 1024 - 4.0453591346741
INSERT 1025 - 3.5422420501709
INSERT 1026 - 3.0147190093994
INSERT 1027 - 3.0681409835815
for ($x = 1; $x < 10000; $x++) {
$start = microtime(true);
$cx = new Category();
$cx->setName("x - " . $x);
for ($y = 1; $y < 50; $y++) {
$cy = new Category();
$cy->setName("y - " . $y);
$cy->setParent($cx);
$manager->persist($cy);
}
$manager->persist($cx);
$manager->flush();
$manager->clear();
$time = microtime(true) - $start;
print "INSERT $x - $time" . PHP_EOL;
}
INSERT 1 - 4.1240599155426
INSERT 2 - 2.9922580718994
INSERT 3 - 3.4141948223114
INSERT 4 - 2.9524540901184
INSERT 5 - 2.9456770420074
INSERT 6 - 2.9329760074615
INSERT 7 - 3.33536195755
INSERT 8 - 3.1516230106354
INSERT 9 - 3.3340380191803
INSERT 10 - 3.7052381038666
INSERT 11 - 3.5456919670105
INSERT 12 - 4.6236689090729
INSERT 13 - 5.1289169788361
INSERT 14 - 5.2330839633942
INSERT 15 - 3.8515930175781
INSERT 16 - 5.9288070201874
INSERT 17 - 4.1212630271912
INSERT 18 - 5.0301640033722
INSERT 19 - 4.4948139190674
INSERT 20 - 3.8037729263306
INSERT 21 - 4.4892470836639
INSERT 22 - 6.8565120697021
INSERT 23 - 5.2171030044556
INSERT 24 - 4.2006359100342
INSERT 25 - 3.8634679317474
INSERT 26 - 3.8861458301544
INSERT 27 - 4.3592522144318
INSERT 28 - 3.8575818538666
INSERT 29 - 5.7499611377716
INSERT 30 - 6.046749830246
INSERT 31 - 5.7323040962219
INSERT 32 - 5.1275308132172
INSERT 33 - 3.8832950592041
INSERT 34 - 5.2584328651428
INSERT 35 - 3.3269391059875
INSERT 36 - 4.0463058948517
INSERT 37 - 3.626825094223
INSERT 38 - 4.3620519638062
INSERT 39 - 3.3635430335999
INSERT 40 - 3.6417429447174
INSERT 41 - 2.9653568267822
INSERT 42 - 4.2108299732208
INSERT 43 - 3.2916820049286
INSERT 44 - 3.1166570186615
INSERT 45 - 3.1292128562927
INSERT 46 - 3.4845941066742
INSERT 47 - 2.962954044342
INSERT 48 - 3.3803770542145
INSERT 49 - 3.0479538440704
INSERT 50 - 3.0602400302887
INSERT 119 - 3.6598789691925
INSERT 196 - 3.159234046936
INSERT 197 - 3.9671618938446
INSERT 198 - 3.0813698768616
INSERT 199 - 3.4000020027161
INSERT 1024 - 4.0453591346741
INSERT 1025 - 3.5422420501709
INSERT 1026 - 3.0147190093994
INSERT 1027 - 3.0681409835815
$repository = $em->getRepository("App:Service");
$refreshLeftAndRight = function($root, $left) use ($repository, &$refreshLeftAndRight) {
$right = $left + 1;
$children = $repository->findBy(['parent' => $root,]);
foreach ($children as $entity) {
$right = $refreshLeftAndRight($entity, $right);
}
try {
$root->setlft($left);
$root->setRgt($right);
}catch (\Exception $e) {
}
return $right + 1;
};
foreach ($repository->findBy(["parent" => null]) as $rootEntry) {
$refreshLeftAndRight($rootEntry, 1);
}
$em->flush();
/**
* @param $node
* @return void
* @throws ReflectionException
*/
public function removeTree(Service $node)
{
$em = $this->getEntityManager();
$em->beginTransaction();
$this->createQueryBuilder("s")
->delete()
->where("s.lft >= :lft")->setParameter("lft", $node->getLft())
->andWhere("s.rgt <= :rgt")->setParameter("rgt", $node->getRgt())
->andWhere("s.root = :root")->setParameter("root", $node->getRoot())
->getQuery()
->execute();
$em->commit();
$repository = $em->getRepository("App:Service");
$refreshLeftAndRight = function($root, $left) use ($repository, &$refreshLeftAndRight) {
$right = $left + 1;
$children = $repository->findBy(['parent' => $root,]);
foreach ($children as $entity) {
$right = $refreshLeftAndRight($entity, $right);
}
try {
$this->updateValue($left, $root, 'lft');
$this->updateValue($right, $root, 'rgt');
}catch (\Exception $e) {
}
return $right + 1;
};
foreach ($repository->findAll() as $rootEntry) {
$refreshLeftAndRight($rootEntry, 1);
}
$em->flush();
}
/**
* @param mixed $value
* @param object $entity
* @param string $property
* @throws ReflectionException
*/
private function updateValue($value, $entity, $property)
{
$reflection = new ReflectionProperty(get_class($entity), $property);
$reflection->setAccessible(true);
$reflection->setValue($entity, $value);
}
Используйте другой способ.
Например