class ApcuFileCacheBackend

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php \Drupal\Component\FileCache\ApcuFileCacheBackend
  2. 8.9.x core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php \Drupal\Component\FileCache\ApcuFileCacheBackend
  3. 10 core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php \Drupal\Component\FileCache\ApcuFileCacheBackend

APCu backend for the file cache.

Hierarchy

Expanded class hierarchy of ApcuFileCacheBackend

1 file declares its use of ApcuFileCacheBackend
KernelTestBase.php in core/tests/Drupal/KernelTests/KernelTestBase.php

File

core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php, line 8

Namespace

Drupal\Component\FileCache
View source
class ApcuFileCacheBackend implements FileCacheBackendInterface {
    
    /**
     * {@inheritdoc}
     */
    public function fetch(array $cids) {
        return apcu_fetch($cids);
    }
    
    /**
     * {@inheritdoc}
     */
    public function store($cid, $data) {
        apcu_store($cid, $data);
    }
    
    /**
     * {@inheritdoc}
     */
    public function delete($cid) {
        apcu_delete($cid);
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
ApcuFileCacheBackend::delete public function Deletes data from a cache backend. Overrides FileCacheBackendInterface::delete
ApcuFileCacheBackend::fetch public function Fetches data from the cache backend. Overrides FileCacheBackendInterface::fetch
ApcuFileCacheBackend::store public function Stores data into a cache backend. Overrides FileCacheBackendInterface::store

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.