If we set ChromeRuntime = true in CefSettings, our initial setting for CachePath is not taking effect #4899
Replies: 2 comments 1 reply
-
What version are you using?
The You're the only person I've seen reporting issues. Load If you are using the latest version then it might be an upstream bug. |
Beta Was this translation helpful? Give feedback.
-
@snkar-hyland is the cachepath an immediate child of rootcachepath? Prior it only had to be any sub directory under rootcachepath but they now require it to be a direct sub directory. As @amaitland mentioned use version to see where the cache path actually is. |
Beta Was this translation helpful? Give feedback.
-
Our code for CefSettings is as follows:
string rootCachePath = '';
RootCachePath = rootCachePath, CachePath = Path.Combine(rootCachePath, <Sub Folder Path>), ...... ...... ...... ...... ...... ChromeRuntime = true
Initially we did not have the ChromeRuntime = true setting and we were getting the browser cache files stored at %TEMP%/RootCache/. After just setting the Chromium Runtime without any other changes, the Cache Files are not getting stored at all (or are getting stored in a different location which we are not aware of) and hence our application cannot take advantage of the cached files resulting in performance impact. Rest of all the browser capabilities in the application is working fine.
Is there anything documented or reported issues which leads to a different behaviour for CachePath if the ChroimeRuntime is set to true?
Beta Was this translation helpful? Give feedback.
All reactions