From c32a77e6be46f823906199e9b9eb3a27d0f817e5 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei <kontakt@beberlei.de> Date: Wed, 4 Apr 2012 23:47:32 +0200 Subject: [PATCH] [DDC-1766] Add usage of default result cache driver, add more docs. --- lib/Doctrine/ORM/AbstractQuery.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/Doctrine/ORM/AbstractQuery.php b/lib/Doctrine/ORM/AbstractQuery.php index 956775b1a..3fba6c4cd 100644 --- a/lib/Doctrine/ORM/AbstractQuery.php +++ b/lib/Doctrine/ORM/AbstractQuery.php @@ -308,11 +308,24 @@ abstract class AbstractQuery /** * Set a cache profile for hydration caching. * + * If no result cache driver is set in the QueryCacheProfile, the default + * result cache driver is used from the configuration. + * + * @example + * $lifetime = 100; + * $resultKey = "abc"; + * $query->setHydrationCacheProfile(new QueryCacheProfile()); + * $query->setHydrationCacheProfile(new QueryCacheProfile($lifetime, $resultKey)); + * * @param \Doctrine\DBAL\Cache\QueryCacheProfile $profile * @return \Doctrine\ORM\AbstractQuery */ public function setHydrationCacheProfile(QueryCacheProfile $profile = null) { + if ( ! $profile->getResultCacheDriver()) { + $profile = $profile->setResultCacheDriver($this->_em->getConfiguration()->getResultCacheImpl()); + } + $this->_hydrationCacheProfile = $profile; return $this; }