public function MemoryBackend::get in Drupal 9
Same name and namespace in other branches
- 8 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()
Returns data from the persistent cache.
Parameters
string $cid: The cache ID of the data to retrieve.
bool $allow_invalid: (optional) If TRUE, a cache item may be returned even if it is expired or has been invalidated. Such items may sometimes be preferred, if the alternative is recalculating the value stored in the cache, especially if another concurrent request is already recalculating the same value. The "valid" property of the returned object indicates whether the item is valid or not. Defaults to FALSE.
Return value
object|false The cache item or FALSE on failure.
Overrides CacheBackendInterface::get
See also
\Drupal\Core\Cache\CacheBackendInterface::getMultiple()
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;
}
}