You are here

public function CacheBackendWrapper::getMultiple in Devel 8.3

Same name and namespace in other branches
  1. 8 webprofiler/src/Cache/CacheBackendWrapper.php \Drupal\webprofiler\Cache\CacheBackendWrapper::getMultiple()
  2. 8.2 webprofiler/src/Cache/CacheBackendWrapper.php \Drupal\webprofiler\Cache\CacheBackendWrapper::getMultiple()
  3. 4.x webprofiler/src/Cache/CacheBackendWrapper.php \Drupal\webprofiler\Cache\CacheBackendWrapper::getMultiple()

Returns data from the persistent cache when given an array of cache IDs.

Parameters

array $cids: An array of cache IDs for the data to retrieve. This is passed by reference, and will have the IDs successfully returned from cache removed.

bool $allow_invalid: (optional) If TRUE, cache items may be returned even if they have expired or been invalidated. Such items may sometimes be preferred, if the alternative is recalculating the value stored in the cache, especially if another concurrent thread is already recalculating the same value. The "valid" property of the returned objects indicates whether the items are valid or not. Defaults to FALSE.

Return value

array An array of cache item objects indexed by cache ID.

Overrides CacheBackendInterface::getMultiple

See also

\Drupal\Core\Cache\CacheBackendInterface::get()

File

webprofiler/src/Cache/CacheBackendWrapper.php, line 76

Class

CacheBackendWrapper
Wraps an existing cache backend to track calls to the cache backend.

Namespace

Drupal\webprofiler\Cache

Code

public function getMultiple(&$cids, $allow_invalid = FALSE) {
  $cidsCopy = $cids;
  $cache = $this->cacheBackend
    ->getMultiple($cids, $allow_invalid);
  foreach ($cidsCopy as $cid) {
    if (in_array($cid, $cids)) {
      $this->cacheDataCollector
        ->registerCacheMiss($this->bin, $cid);
    }
    else {
      $cacheCopy = new \stdClass();
      $cacheCopy->cid = $cache[$cid]->cid;
      $cacheCopy->expire = $cache[$cid]->expire;
      $cacheCopy->tags = $cache[$cid]->tags;
      $this->cacheDataCollector
        ->registerCacheHit($this->bin, $cacheCopy);
    }
  }
  return $cache;
}