class MemoryBackendFactory in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Cache/MemoryBackendFactory.php \Drupal\Core\Cache\MemoryBackendFactory
- 10 core/lib/Drupal/Core/Cache/MemoryBackendFactory.php \Drupal\Core\Cache\MemoryBackendFactory
Hierarchy
- class \Drupal\Core\Cache\MemoryBackendFactory implements CacheFactoryInterface
Expanded class hierarchy of MemoryBackendFactory
1 file declares its use of MemoryBackendFactory
- NormalInstallerServiceProvider.php in core/
lib/ Drupal/ Core/ Installer/ NormalInstallerServiceProvider.php
1 string reference to 'MemoryBackendFactory'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses MemoryBackendFactory
File
- core/
lib/ Drupal/ Core/ Cache/ MemoryBackendFactory.php, line 5
Namespace
Drupal\Core\CacheView source
class MemoryBackendFactory implements CacheFactoryInterface {
/**
* Instantiated memory cache bins.
*
* @var \Drupal\Core\Cache\MemoryBackend[]
*/
protected $bins = [];
/**
* {@inheritdoc}
*/
public function get($bin) {
if (!isset($this->bins[$bin])) {
$this->bins[$bin] = new MemoryBackend();
}
return $this->bins[$bin];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MemoryBackendFactory:: |
protected | property | Instantiated memory cache bins. | |
MemoryBackendFactory:: |
public | function |
Gets a cache backend class for a given cache bin. Overrides CacheFactoryInterface:: |