_expireTimeout); } /** * @see SugarCacheAbstract::_getExternal() */ protected function _getExternal( $key ) { $res = apc_fetch($key); if($res === false) { return null; } return $res; } /** * @see SugarCacheAbstract::_clearExternal() */ protected function _clearExternal( $key ) { apc_delete($key); } /** * @see SugarCacheAbstract::_resetExternal() */ protected function _resetExternal() { apc_clear_cache('user'); } }