interface CacheFactoryInterface

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Cache/CacheFactoryInterface.php \Drupal\Core\Cache\CacheFactoryInterface
  2. 8.9.x core/lib/Drupal/Core/Cache/CacheFactoryInterface.php \Drupal\Core\Cache\CacheFactoryInterface
  3. 10 core/lib/Drupal/Core/Cache/CacheFactoryInterface.php \Drupal\Core\Cache\CacheFactoryInterface

An interface defining cache factory classes.

Hierarchy

Expanded class hierarchy of CacheFactoryInterface

All classes that implement CacheFactoryInterface

4 files declare their use of CacheFactoryInterface
CacheFactoryDecorator.php in core/modules/system/tests/modules/performance_test/src/Cache/CacheFactoryDecorator.php
ChainedFastBackendFactoryTest.php in core/tests/Drupal/Tests/Core/Cache/ChainedFastBackendFactoryTest.php
MemoryCacheFactory.php in core/lib/Drupal/Core/Cache/MemoryCache/MemoryCacheFactory.php
UpdateCacheBackendFactory.php in core/lib/Drupal/Core/Update/UpdateCacheBackendFactory.php

File

core/lib/Drupal/Core/Cache/CacheFactoryInterface.php, line 8

Namespace

Drupal\Core\Cache
View source
interface CacheFactoryInterface {
    
    /**
     * Gets a cache backend class for a given cache bin.
     *
     * @param string $bin
     *   The cache bin for which a cache backend object should be returned.
     *
     * @return \Drupal\Core\Cache\CacheBackendInterface
     *   The cache backend object associated with the specified bin.
     */
    public function get($bin);

}

Members

Title Sort descending Modifiers Object type Summary Overrides
CacheFactoryInterface::get public function Gets a cache backend class for a given cache bin. 11

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