diff --git a/lib/Doctrine/ORM/Cache/CacheConfiguration.php b/lib/Doctrine/ORM/Cache/CacheConfiguration.php index 4a583c14c..2e9d73f8f 100644 --- a/lib/Doctrine/ORM/Cache/CacheConfiguration.php +++ b/lib/Doctrine/ORM/Cache/CacheConfiguration.php @@ -20,6 +20,7 @@ namespace Doctrine\ORM\Cache; +use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\ORMException; use Doctrine\ORM\Cache\Logging\CacheLogger; @@ -51,6 +52,11 @@ class CacheConfiguration */ private $queryValidator; + /** + * @var callable|null + */ + private $cacheInstantiator; + /** * @var string */ @@ -130,6 +136,35 @@ class CacheConfiguration $this->queryValidator = $validator; } + /** + * @param callable $instantiator responsible of retrieving an {@see \Doctrine\ORM\Cache} instance given + * a {@see \Doctrine\ORM\EntityManagerInterface} instance + * + * @throws ORMException if the given instantiator is not a valid callable + */ + public function setCacheInstantiator($instantiator) + { + if ( ! is_callable($instantiator)) { + throw ORMException::invalidSecondLevelCacheInstantiator($instantiator); + } + + $this->cacheInstantiator = $instantiator; + } + + /** + * @return callable that + */ + public function getCacheInstantiator() + { + if ( ! $this->cacheInstantiator) { + $this->cacheInstantiator = function (EntityManagerInterface $entityManager) { + return new DefaultCache($entityManager); + }; + } + + return $this->cacheInstantiator; + } + /** * @param string $className *