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