You are here

public function MemcacheBackend::getMultiple in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 modules/memcache/src/MemcacheBackend.php \Drupal\memcache\MemcacheBackend::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()

1 call to MemcacheBackend::getMultiple()
MemcacheBackend::get in modules/memcache/src/MemcacheBackend.php
Returns data from the persistent cache.

File

modules/memcache/src/MemcacheBackend.php, line 97
Contains \Drupal\memcache\MemcacheBackend.

Class

MemcacheBackend
Defines a Memcache cache backend.

Namespace

Drupal\memcache

Code

public function getMultiple(&$cids, $allow_invalid = FALSE) {
  $cache = $this->memcache
    ->getMulti($cids);
  foreach ($cache as $cid => $result) {
    if (!$this
      ->valid($cid, $result) && !$allow_invalid) {

      // This object has expired, so don't return it.
      unset($cache[$cid]);
    }
  }

  // Remove items from the referenced $cids array that we are returning,
  // per comment in Drupal\Core\Cache\CacheBackendInterface::getMultiple().
  $cids = array_diff($cids, array_keys($cache));
  return $cache;
}