#1169 DDC-3343 - factoring logging into cached collection persister changes
This commit is contained in:
parent
7e85c94f48
commit
cb780e8bb6
1 changed files with 15 additions and 6 deletions
|
@ -271,11 +271,17 @@ abstract class AbstractCollectionPersister implements CachedCollectionPersister
|
||||||
*/
|
*/
|
||||||
protected function evictCollectionCache(PersistentCollection $collection)
|
protected function evictCollectionCache(PersistentCollection $collection)
|
||||||
{
|
{
|
||||||
$this->region->evict(new CollectionCacheKey(
|
$key = new CollectionCacheKey(
|
||||||
$this->sourceEntity->rootEntityName,
|
$this->sourceEntity->rootEntityName,
|
||||||
$this->association['fieldName'],
|
$this->association['fieldName'],
|
||||||
$this->uow->getEntityIdentifier($collection->getOwner())
|
$this->uow->getEntityIdentifier($collection->getOwner())
|
||||||
));
|
);
|
||||||
|
|
||||||
|
$this->region->evict($key);
|
||||||
|
|
||||||
|
if ($this->cacheLogger) {
|
||||||
|
$this->cacheLogger->collectionCachePut($this->regionName, $key);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -286,10 +292,13 @@ abstract class AbstractCollectionPersister implements CachedCollectionPersister
|
||||||
{
|
{
|
||||||
/* @var $targetPersister CachedEntityPersister */
|
/* @var $targetPersister CachedEntityPersister */
|
||||||
$targetPersister = $this->uow->getEntityPersister($targetEntity);
|
$targetPersister = $this->uow->getEntityPersister($targetEntity);
|
||||||
|
$targetRegion = $targetPersister->getCacheRegion();
|
||||||
|
$key = new EntityCacheKey($targetEntity, $this->uow->getEntityIdentifier($element));
|
||||||
|
|
||||||
$targetPersister->getCacheRegion()->evict(new EntityCacheKey(
|
$targetRegion->evict($key);
|
||||||
$targetEntity,
|
|
||||||
$this->uow->getEntityIdentifier($element)
|
if ($this->cacheLogger) {
|
||||||
));
|
$this->cacheLogger->entityCachePut($targetRegion->getName(), $key);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue