You are here

public function FileSystemBackend::getMultiple in File Cache 8

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

src/Cache/FileSystemBackend.php, line 111

Class

FileSystemBackend
A cache backend that stores cache items as files on the file system.

Namespace

Drupal\filecache\Cache

Code

public function getMultiple(&$cids, $allow_invalid = FALSE) {
  $items = [];
  foreach ($cids as $key => $cid) {
    if ($item = $this
      ->get($cid, $allow_invalid)) {
      $items[$cid] = $item;

      // According to the method documentation the existing cache IDs should
      // be removed from the list of IDs which is passed in by reference.
      unset($cids[$key]);
    }
  }
  return $items;
}