ApcuFileCacheBackend.php in Zircon Profile 8.0
Same filename and directory in other branches
Namespace
Drupal\Component\FileCacheFile
core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.phpView source
<?php
/**
* @file
* Contains \Drupal\Component\FileCache\ApcuFileCacheBackend.
*/
namespace Drupal\Component\FileCache;
/**
* APCu backend for the file cache.
*/
class ApcuFileCacheBackend implements FileCacheBackendInterface {
/**
* {@inheritdoc}
*/
public function fetch(array $cids) {
return apc_fetch($cids);
}
/**
* {@inheritdoc}
*/
public function store($cid, $data) {
apc_store($cid, $data);
}
/**
* {@inheritdoc}
*/
public function delete($cid) {
apc_delete($cid);
}
}
Classes
Name | Description |
---|---|
ApcuFileCacheBackend | APCu backend for the file cache. |