You are here

public function CacheRawBackendInterface::counterSetMultiple in Supercache 8

Same name and namespace in other branches
  1. 2.0.x src/Cache/CacheRawBackendInterface.php \Drupal\supercache\Cache\CacheRawBackendInterface::counterSetMultiple()

Set the value of counter variables in batch.

Parameters

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

$items = array(
  $cid => $value,
);
3 methods override CacheRawBackendInterface::counterSetMultiple()
ApcuRawBackend::counterSetMultiple in src/Cache/ApcuRawBackend.php
Set the value of counter variables in batch.
ChainedFastRawBackend::counterSetMultiple in src/Cache/ChainedFastRawBackend.php
Set the value of counter variables in batch.
DatabaseRawBackend::counterSetMultiple in src/Cache/DatabaseRawBackend.php
Set the value of counter variables in batch.

File

src/Cache/CacheRawBackendInterface.php, line 197
Contains \Drupal\supercache\Cache\CacheRawBackendInterface.

Class

CacheRawBackendInterface
Defines an interface for cache implementations.

Namespace

Drupal\supercache\Cache

Code

public function counterSetMultiple(array $items);