开发者

How can I force Windows to clear all disk read cache data? [duplicate]

开发者 https://www.devze.com 2023-01-07 14:56 出处:网络
This question already has answers here: Closed 10 years ago. Possible Duplicate: How to invalidate the file system cache?
This question already has answers here: Closed 10 years ago.

Possible Duplicate:

How to invalidate the file system cache?

I'm writing a disk intensive win32 program. The first time it runs, it runs a lot slower while it scans the user's folders using FindFirstFil开发者_如何转开发e()/FindNextFile().

How can I repeat this first time performance without rebooting? Is there any way to force the system to discard everything in its disk cache?

I know that if I were reading a single file, I can disable caching by passing the FILE_FLAG_NO_BUFFERING flag to a call to CreateFile(). But it doesn't seem possible to do this when searching for files.


Have you thought about doing it on a different volume, and dismounting / remounting the volume? That will cause the vast majority of everything to be re-read from disk (though the cache down there won't care).


You need to create enough memory pressure to cause the memory manager and cache manager to discard the previously caches results. For the cache manager, you could try to open a large (I.e. Bigger than physical ram) file with caching enabled and then read it backwards (to avoid any sequential I/o optimizations). The interactions between vm and cache manager are a little more complex and much more dependent on os version.

There are also caches on the controller (possibly, but unlikely) and on the disk drive itself (likely). There are specific IoCtls to flush this cache, but in my experience, disk firmware is untested in this arena.


Check out the Clear function of CacheSet by SysInternals.


You could avoid a physical reboot by using a virtual machine.


I tried all the methods in the answers, including CacheSet, but they would not work for FindFirstFile/FindNextfile(). Here is what worked:

  • Scanning files over the network. When scanning a shared drive, it seems that windows does not cache the folders, so it is slow every time.

  • The simplest way to make any algorithm slower is to insert calls to Sleep(). This can reveal lots of problems in multi-threaded code, and that is what I was really trying to do.

0

精彩评论

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

关注公众号