function MultiGetCache::fetchMultiple in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/cache/lib/Doctrine/Common/Cache/MultiGetCache.php \Doctrine\Common\Cache\MultiGetCache::fetchMultiple()
Returns an associative array of values for keys is found in cache.
Parameters
string[] $keys Array of keys to retrieve from cache:
Return value
mixed[] Array of retrieved values, indexed by the specified keys. Values that couldn't be retrieved are not contained in this array.
1 method overrides MultiGetCache::fetchMultiple()
- CacheProvider::fetchMultiple in vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ CacheProvider.php - Returns an associative array of values for keys is found in cache.
File
- vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ MultiGetCache.php, line 38
Class
- MultiGetCache
- Interface for cache drivers that allows to get many items at once.
Namespace
Doctrine\Common\CacheCode
function fetchMultiple(array $keys);