You are here

public function CacheBackendDecorator::setMultiple in Multiversion 8

Store multiple items in the persistent cache.

Parameters

array $items: An array of cache items, keyed by cid. In the form:

$items = array(
  $cid => array(
    // Required, will be automatically serialized if not a string.
    'data' => $data,
    // Optional, defaults to CacheBackendInterface::CACHE_PERMANENT.
    'expire' => CacheBackendInterface::CACHE_PERMANENT,
    // (optional) The cache tags for this item, see CacheBackendInterface::set().
    'tags' => array(),
  ),
);

Overrides CacheBackendInterface::setMultiple

File

src/CacheBackendDecorator.php, line 70

Class

CacheBackendDecorator

Namespace

Drupal\multiversion

Code

public function setMultiple(array $items) {
  $decorated_items = [];
  foreach ($items as $cid => $item) {
    $decorated_items[$this
      ->decorate($cid)] = $item;

    // Save some memory.
    unset($items[$cid]);
  }
  return $this
    ->setMultiple($decorated_items);
}