function EntityStorageBase::getFromStaticCache
Same name in other branches
- 9 core/lib/Drupal/Core/Entity/EntityStorageBase.php \Drupal\Core\Entity\EntityStorageBase::getFromStaticCache()
- 10 core/lib/Drupal/Core/Entity/EntityStorageBase.php \Drupal\Core\Entity\EntityStorageBase::getFromStaticCache()
- 11.x core/lib/Drupal/Core/Entity/EntityStorageBase.php \Drupal\Core\Entity\EntityStorageBase::getFromStaticCache()
Gets entities from the static cache.
Parameters
array $ids: If not empty, return entities that match these IDs.
Return value
\Drupal\Core\Entity\EntityInterface[] Array of entities from the entity cache, keyed by entity ID.
1 call to EntityStorageBase::getFromStaticCache()
- EntityStorageBase::loadMultiple in core/
lib/ Drupal/ Core/ Entity/ EntityStorageBase.php - Loads one or more entities.
File
-
core/
lib/ Drupal/ Core/ Entity/ EntityStorageBase.php, line 166
Class
- EntityStorageBase
- A base entity storage class.
Namespace
Drupal\Core\EntityCode
protected function getFromStaticCache(array $ids) {
$entities = [];
// Load any available entities from the internal cache.
if ($this->entityType
->isStaticallyCacheable()) {
foreach ($ids as $id) {
if ($cached = $this->memoryCache
->get($this->buildCacheId($id))) {
$entities[$id] = $cached->data;
}
}
}
return $entities;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.