From 1f4a65f3e05689b8725851d8bb88a0fc7f77b150 Mon Sep 17 00:00:00 2001 From: Gusakov Nikita Date: Mon, 20 May 2013 17:08:20 +0400 Subject: [PATCH] add debug variable and check for loader --- tools/sandbox/bootstrap.php | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/tools/sandbox/bootstrap.php b/tools/sandbox/bootstrap.php index 0e7120544..5b97b9412 100644 --- a/tools/sandbox/bootstrap.php +++ b/tools/sandbox/bootstrap.php @@ -1,26 +1,32 @@ add('Entities', __DIR__); $loader->add('Proxies', __DIR__); +$debug = true; $config = new \Doctrine\ORM\Configuration(); // Set up Metadata Drivers $driverImpl = $config->newDefaultAnnotationDriver(array(__DIR__ . "/Entities")); $config->setMetadataDriverImpl($driverImpl); -// Set up caches -$cache = new ApcCache; +// Set up caches, depending on $debug variable. +// You can use another variable to define which one of the cache systems you gonna use. +$cache = $debug ? new Cache\ArrayCache : new Cache\ApcCache; $config->setMetadataCacheImpl($cache); $config->setQueryCacheImpl($cache); -$config->setMetadataCacheImpl(new \Doctrine\Common\Cache\ArrayCache); // Proxy configuration $config->setProxyDir(__DIR__ . '/Proxies');