From 74a432883324987eb712bfa7138fe30ca0555936 Mon Sep 17 00:00:00 2001 From: romanb Date: Sun, 28 Feb 2010 22:48:50 +0000 Subject: [PATCH] [2.0] Refactored UoW#createEntity slightly for perf. reasons (documented properly now). --- lib/Doctrine/ORM/UnitOfWork.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php index d3ae9d627..ee38260fb 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -1808,7 +1808,11 @@ class UnitOfWork implements PropertyChangedListener $newValue = $assoc->load($entity, null, $this->_em, $associatedId); } else { $newValue = $this->_em->getProxyFactory()->getProxy($assoc->targetEntityName, $associatedId); - $this->registerManaged($newValue, $associatedId, array()); + // PERF: Inlined & optimized code from UnitOfWork#registerManaged() + $newValueOid = spl_object_hash($newValue); + $this->_entityIdentifiers[$newValueOid] = $associatedId; + $this->_identityMap[$targetClass->rootEntityName][$relatedIdHash] = $newValue; + $this->_entityStates[$newValueOid] = self::STATE_MANAGED; } } $this->_originalEntityData[$oid][$field] = $newValue;