因为我的内存有 2G ,足够用,所以我把虚拟内存完全关掉了
理论上来说是对的。但是,
1。系统在你背后搞了个大约20MB的 PageFile, 又叫 Swap.
2。有的程序还是要对PageFile进行操作,这是你不能控制的。
有了多的RAM后,有两派人,有的要少的Swap, 有的要多的Swap。
总之,要试一下,才行。 试了以后, 很有可能你还是该买个SCSI的硬盘

。
这是要多的Swap的理论。
Putting a pagefile in a RAM drive is a ridiculous idea in theory, and almost always a performance hit when tested under real-world workloads.
Conversely, if you don't have plenty of RAM, dedicating some of it to a RAM drive will only increase your pagefault rate.
The system is ALREADY cacheing pages in memory. Pages lost from working sets are not written out to disk immediately (or at all if they weren't modified), and even after being written out to disk, are not assigned to another process immediately. They're kept on the modified and standby page lists, respectively. The memory access behavior of most apps being what it is, you tend to access the same sets of pages over time... so if you access a page you lost from your working set recently, odds are its contents are still in memory, on one of those lists. So you don't have to go to disk for it.
[
本帖最后由 一浪儿 于 2006-1-30 03:17 编辑 ]