ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[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(); //缓存路径 ```