Returns whether metadata for the given class exists in the cache
string $class:
Overrides CacheInterface::has
public function has($class) {
  if (!function_exists('apc_exists')) {
    $exists = false;
    apc_fetch($this->prefix . $class, $exists);
    return $exists;
  }
  return apc_exists($this->prefix . $class);
}