企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ### 优化cef ***** #### 清除ie浏览器缓存 强制清除: ``` virtual void CefApp::OnBeforeCommandLineProcessing(const CefString& process_type,CefRefPtr<CefCommandLine> command_line) { command_line->AppendSwitch("no-proxy-server"); } ``` #### 开启缓存 ``` CefSettings cSettings; cSettings.persist_user_preferences = true; CefString(&cSettings.cache_path) = document.GetString(); //缓存路径 ```