The game I’m working on has a lot of http.request calling to get files from a local server. Whenever there is an update on the server (from the files requested), if flushes. I’m not too worried for computer, but I looked, and saw is stored over 100 KB of just the same files with same files with some changes. I can just delete this on computer with code, but I’m not sure if mobile devices will allow that nor do I know how to get the app do delete cache.
Main question: Does http data flush to mobile devices? If so, is there a way I can delete it without having users manually do it or just stop it from flushing at all?
The http cache will automatically remove old cached data. The default lifetime is 5 days:
But we respect the max-age Cache-Control header:
On Android we use the location provided by getFilesDir() which is for application internal files. These files may be cleaned up by the system over the lifetime of the application but it is not guaranteed (which is why we prune the cache ourselves). The files will be deleted on app uninstall.