Page 1 of 1
How to disable saving temporary files
Posted: Thu Aug 27, 2020 10:13 am
by andreykrasnodar
I want Chromium to disable to save on hard drive everything (dictionaries, history, cache, locales etc.) except cookies. Is that possible?
Re: How to disable saving temporary files
Posted: Thu Aug 27, 2020 12:28 pm
by salvadordf
In OldCEF4Delphi you can still set a different directory for cache and cookies.
If you set GlobalCEFApp.cache to an empty string it should use RAM memory to store the cache.
Set GlobalCEFApp.cookies to a directory in the hard drive to save the cookies locally.
I'm not so sure what happens to the dictionaries and user data. Some versions of CEF had issues and they stored them even when you used an empty cache.
Re: How to disable saving temporary files
Posted: Thu Aug 27, 2020 6:03 pm
by andreykrasnodar
Thanks.