You are here

private function CacheProvider::getNamespaceCacheKey in Plug 7

Returns the namespace cache key.

Return value

string

2 calls to CacheProvider::getNamespaceCacheKey()
CacheProvider::deleteAll in lib/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php
Deletes all cache entries.
CacheProvider::getNamespaceVersion in lib/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php
Returns the namespace version.

File

lib/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php, line 174

Class

CacheProvider
Base class for cache provider implementations.

Namespace

Doctrine\Common\Cache

Code

private function getNamespaceCacheKey() {
  return sprintf(self::DOCTRINE_NAMESPACE_CACHEKEY, $this->namespace);
}