config = $config; $this->instanceCreator = $instanceCreator; $this->profiler = $profiler; } /** * This method creates a CacheDriver for distributed caching * * @return ICanCache The instance of the CacheDriver * * @throws InvalidCacheDriverException In case the underlying cache driver isn't valid or not configured properly * @throws CachePersistenceException In case the underlying cache has errors during persistence */ public function createDistributed(): ICanCache { return $this->create($this->config->get('system', 'distributed_cache_driver', self::DEFAULT_TYPE)); } /** * This method creates a CacheDriver for local caching with the given cache driver name * * @param string|null $type The cache type to create (default is per config) * * @return ICanCache The instance of the CacheDriver * * @throws InvalidCacheDriverException In case the underlying cache driver isn't valid or not configured properly * @throws CachePersistenceException In case the underlying cache has errors during persistence */ public function createLocal(string $type = null): ICanCache { return $this->create($type ?? $this->config->get('system', 'cache_driver', self::DEFAULT_TYPE)); } /** * Creates a new Cache instance * * @param string $strategy The strategy, which cache instance should be used * * @return ICanCache * * @throws InvalidCacheDriverException In case the underlying cache driver isn't valid or not configured properly * @throws CachePersistenceException In case the underlying cache has errors during persistence */ protected function create(string $strategy): ICanCache { /** @var ICanCache $cache */ $cache = $this->instanceCreator->create(ICanCache::class, $strategy); $profiling = $this->config->get('system', 'profiling', false); // In case profiling is enabled, wrap the ProfilerCache around the current cache if (isset($profiling) && $profiling !== false) { return new Type\ProfilerCacheDecorator($cache, $this->profiler); } else { return $cache; } } }