protected function MemcachedCache::doFetchMultiple in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/cache/lib/Doctrine/Common/Cache/MemcachedCache.php \Doctrine\Common\Cache\MemcachedCache::doFetchMultiple()
Default implementation of doFetchMultiple. Each driver that supports multi-get should owerwrite it.
Parameters
array $keys Array of keys to retrieve from cache:
Return value
array Array of values retrieved for the given keys.
Overrides CacheProvider::doFetchMultiple
File
- vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ MemcachedCache.php, line 75
Class
- MemcachedCache
- Memcached cache provider.
Namespace
Doctrine\Common\CacheCode
protected function doFetchMultiple(array $keys) {
return $this->memcached
->getMulti($keys);
}