public function CacheRawBackendInterface::getMultiple in Supercache 8
Same name and namespace in other branches
- 2.0.x src/Cache/CacheRawBackendInterface.php \Drupal\supercache\Cache\CacheRawBackendInterface::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.
Return value
array An array of cache item objects indexed by cache ID.
See also
\Drupal\Core\Cache\CacheRawBackendInterface::get()
3 methods override CacheRawBackendInterface::getMultiple()
- ApcuRawBackend::getMultiple in src/
Cache/ ApcuRawBackend.php - Returns data from the persistent cache when given an array of cache IDs.
- ChainedFastRawBackend::getMultiple in src/
Cache/ ChainedFastRawBackend.php - Returns data from the persistent cache when given an array of cache IDs.
- DatabaseRawBackend::getMultiple in src/
Cache/ DatabaseRawBackend.php - Returns data from the persistent cache when given an array of cache IDs.
File
- src/
Cache/ CacheRawBackendInterface.php, line 54 - Contains \Drupal\supercache\Cache\CacheRawBackendInterface.
Class
- CacheRawBackendInterface
- Defines an interface for cache implementations.
Namespace
Drupal\supercache\CacheCode
public function getMultiple(&$cids);