function MemcacheStoragePageCache::getMultiple in Memcache Storage 7
Ovirrides MemcacheStorage::getMultiple().
Overrides MemcacheStorage::getMultiple
File
- ./
memcache_storage.page_cache.inc, line 25 - Provides class for memcached data handling within cache_page bin.
Class
- MemcacheStoragePageCache
- Class handles memcached cache objects.
Code
function getMultiple(&$cids) {
// No direct access to the cache if enabled external integration.
if (MEMCACHE_STORAGE_EXTERNAL_PAGE_CACHE) {
return array();
}
// Process page cache get as usual.
return parent::getMultiple($cids);
}