/**
  * @param string $cacheDir
  * @param bool   $debug
  */
 public function __construct($cacheDir, $debug)
 {
     $this->debug = $debug;
     $this->cache = new \Doctrine\Common\Cache\PhpFileCache($cacheDir, '.pubSubRouter.php');
     $this->cache->setNamespace('pubsub_router');
 }