class MemoryBackendFactory
Same name in other branches
- 9 core/lib/Drupal/Core/Cache/MemoryBackendFactory.php \Drupal\Core\Cache\MemoryBackendFactory
- 8.9.x core/lib/Drupal/Core/Cache/MemoryBackendFactory.php \Drupal\Core\Cache\MemoryBackendFactory
- 11.x core/lib/Drupal/Core/Cache/MemoryBackendFactory.php \Drupal\Core\Cache\MemoryBackendFactory
Hierarchy
- class \Drupal\Core\Cache\MemoryBackendFactory implements \Drupal\Core\Cache\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 7
Namespace
Drupal\Core\CacheView source
class MemoryBackendFactory implements CacheFactoryInterface {
/**
* Instantiated memory cache bins.
*
* @var \Drupal\Core\Cache\MemoryBackend[]
*/
protected $bins = [];
/**
* Constructs a MemoryBackendFactory object.
*
* @param \Drupal\Component\Datetime\TimeInterface|null $time
* The time service.
*/
public function __construct(?TimeInterface $time = NULL) {
if (!$time) {
@trigger_error('Calling ' . __METHOD__ . '() without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3387233', E_USER_DEPRECATED);
$this->time = \Drupal::service(TimeInterface::class);
}
}
/**
* {@inheritdoc}
*/
public function get($bin) {
if (!isset($this->bins[$bin])) {
$this->bins[$bin] = new MemoryBackend($this->time);
}
return $this->bins[$bin];
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
MemoryBackendFactory::$bins | protected | property | Instantiated memory cache bins. |
MemoryBackendFactory::get | public | function | |
MemoryBackendFactory::__construct | public | function | Constructs a MemoryBackendFactory object. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.