开发者

How do web browser games access temporary files

开发者 https://www.devze.com 2022-12-30 06:39 出处:网络
There is a web game that I play and I used fiddler to see what tempo开发者_JS百科rary files it downloaded. While I was playing I deleted all those temporary files including the sounds and flash files.

There is a web game that I play and I used fiddler to see what tempo开发者_JS百科rary files it downloaded. While I was playing I deleted all those temporary files including the sounds and flash files. But it didn't affect the game at all. Why is that? I checked in fiddler and it doesn't look like the files were redownloaded.


Presumably, you browser loaded the files into memory and also cached them to disk, so deleting the cached copies doesn't keep it from continuing to execute the files in memory. If you leave the page and go back again, however, your browser will need to download the files again if they have been removed from the disk cache (unless by chance it keeps files cached in memory as well, YMMV).

0

精彩评论

暂无评论...
验证码 换一张
取 消