Why is RAM Disk so much faster than an SSD drive?

link|improve this question
4  
The same reason flying a jet is faster than walking from New York to Los Angeles. They're completely different technologies. – Chris S May 9 '11 at 1:54
feedback

closed as not a real question by Shane Madden, Chris S, John Gardeniers, ewwhite, Iain May 9 '11 at 7:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

up vote 3 down vote accepted

It has to do with a number of factors. Bandwidth to memory vs SSD, also write latency speeds, DRAM is constantly refreshed and thus has a latency measured in nanoseconds, whereas Flash requires a high voltage to write into the gate along with a few other details, often SSD latency is measured in microseconds.

http://en.wikipedia.org/wiki/Solid-state_drive

link|improve this answer
Great answer, so just suggesting an addition: an SSD has to pass through a storage controller, whereas modern chips have on-die MMUs, so (as a simple way to explain it, I know it's not a perfect analogy), RAM is "closer" to the CPU. Also, depending on what FS you're using, something like tmpfs writes marginally less data to the storage medium than does (f.ex.) ext3, since it's worried about crash recovery and is not journaling. – BMDan May 9 '11 at 2:04
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.