public function VarnishCache::getMultiple in Varnish 7
Returns data from the persistent cache when given an array of cache IDs.
Parameters
$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.
Return value
An array of the items successfully returned from cache indexed by cid.
Overrides DrupalCacheInterface::getMultiple
File
- ./
varnish.cache.inc, line 27 - Cache include file, to be used in settings.php file.
Class
- VarnishCache
- Varnish cache implementation.
Code
public function getMultiple(&$cids) {
return array();
}