function MemoryBackend::getMultiple

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Cache/MemoryBackend.php \Drupal\Core\Cache\MemoryBackend::getMultiple()
  2. 10 core/lib/Drupal/Core/Cache/MemoryBackend.php \Drupal\Core\Cache\MemoryBackend::getMultiple()
  3. 11.x core/lib/Drupal/Core/Cache/MemoryBackend.php \Drupal\Core\Cache\MemoryBackend::getMultiple()

Overrides CacheBackendInterface::getMultiple

File

core/lib/Drupal/Core/Cache/MemoryBackend.php, line 44

Class

MemoryBackend
Defines a memory cache implementation.

Namespace

Drupal\Core\Cache

Code

public function getMultiple(&$cids, $allow_invalid = FALSE) {
    $ret = [];
    $items = array_intersect_key($this->cache, array_flip($cids));
    foreach ($items as $item) {
        $item = $this->prepareItem($item, $allow_invalid);
        if ($item) {
            $ret[$item->cid] = $item;
        }
    }
    $cids = array_diff($cids, array_keys($ret));
    return $ret;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.