function MemoryBackend::get
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Cache/MemoryBackend.php \Drupal\Core\Cache\MemoryBackend::get()
- 10 core/lib/Drupal/Core/Cache/MemoryBackend.php \Drupal\Core\Cache\MemoryBackend::get()
- 11.x core/lib/Drupal/Core/Cache/MemoryBackend.php \Drupal\Core\Cache\MemoryBackend::get()
Overrides CacheBackendInterface::get
1 call to MemoryBackend::get()
- MemoryCounterBackend::get in core/
lib/ Drupal/ Core/ Cache/ MemoryCounterBackend.php - Returns data from the persistent cache.
1 method overrides MemoryBackend::get()
- MemoryCounterBackend::get in core/
lib/ Drupal/ Core/ Cache/ MemoryCounterBackend.php - Returns data from the persistent cache.
File
-
core/
lib/ Drupal/ Core/ Cache/ MemoryBackend.php, line 32
Class
- MemoryBackend
- Defines a memory cache implementation.
Namespace
Drupal\Core\CacheCode
public function get($cid, $allow_invalid = FALSE) {
if (isset($this->cache[$cid])) {
return $this->prepareItem($this->cache[$cid], $allow_invalid);
}
else {
return FALSE;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.