Okay, I should explain something: THIS ISN'T A MATTER OF OPINION. This is how it works: Ram is faster.
Note: Earlier, I meant SRAM, It's the faster one,
my bad
So, here's a rough example:
HDD "access time" is determined by: average seek time average rotation average transfer speed.
Those equations, respectfully are:
Tavg seek = (defined by manufacturer, in this case 9ms)
Tavg rotation = 1/2 Tmax rotation = ((1/RPM)*(60S/1Min))/2
Tavg transfer = (1/RPM)
(1/average # sectors/track)(60S/1Min)
So,
Tavg seek = 9ms
Tavg rotation = 1/2(60S/7200)*(1000ms/1S) = 4ms (approximately)
Tavg transfer = (60/7200)
(1/400)(1000ms/S) = .02ms (assumes 400 sectors/track average)
So: Taccess = 9ms + 0.02ms + 4ms = 13.02ms This is a minimum number ... not dependant on the size of the data you're accessing (I think this is actually for accessing an entire sector ...)
But, it's longer if you wanted to access something like ... 512Bytes. Where as in Sram it takes about 256ns and 4000ns for Dram.
That means that the disk takes anywhere from 2,500 to 40,000 times as long on that small piece of information. (Since ram is compromised of both S and D ram)
Now, having more physical ram
should make VMM more infrequently used. Now, Windows does do some funky stuff, but it should utilize it. Now ... wouldn't you rather have something coming at you 40,000 times faster?
Of course, if harddrives were all flash memory based (or something as such) it'd be just as fast (probably slower, since it'd be on a slower bus) as ram.
Is any of this getting through?
Blame it on Microsoft, God does.