public function ApcCache::get

Overrides CacheInterface::get

See also

CacheInterface::get()

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Cache/ApcCache.php, line 34

Class

ApcCache
Uses APC to cache files

Namespace

Assetic\Cache

Code

public function get($key) {
  $value = apc_fetch($key, $success);
  if (!$success) {
    throw new \RuntimeException('There is no cached value for ' . $key);
  }
  return $value;
}