function MultiGetCache::fetchMultiple in Plug 7
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 lib/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ CacheProvider.php - Returns an associative array of values for keys is found in cache.
File
- lib/
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);