public function load($id,
$doNotTestCacheValidity = false
) { if ($doNotTestCacheValidity) { $this->
_log("Zend_Cache_Backend_Xcache::load() : \$doNotTestCacheValidity=true is unsupported by the Xcache backend"
);
} $tmp =
xcache_get($id);
if (is_array($tmp)) { return $tmp[0
];
} return false;
} /**
* Test if a cache is available or not (for the given id)
*
* @param string $id cache id
* @return mixed false (a cache is not available) or "last modified" timestamp (int) of the available cache record
*/