Cloning and configuring the cache adapter for each newly created cache region (fixes cache namespacing)
This commit is contained in:
parent
6564f95260
commit
0f2c117f3e
1 changed files with 5 additions and 1 deletions
|
@ -198,7 +198,11 @@ class DefaultCacheFactory implements CacheFactory
|
||||||
return $this->regions[$cache['region']];
|
return $this->regions[$cache['region']];
|
||||||
}
|
}
|
||||||
|
|
||||||
$region = new DefaultRegion($cache['region'], clone $this->cache, $this->regionsConfig->getLifetime($cache['region']));
|
$cacheAdapter = clone $this->cache;
|
||||||
|
|
||||||
|
$cacheAdapter->setNamespace($cache['region']);
|
||||||
|
|
||||||
|
$region = new DefaultRegion($cache['region'], $cacheAdapter, $this->regionsConfig->getLifetime($cache['region']));
|
||||||
|
|
||||||
if ($cache['usage'] === ClassMetadata::CACHE_USAGE_READ_WRITE) {
|
if ($cache['usage'] === ClassMetadata::CACHE_USAGE_READ_WRITE) {
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue