2

Normal SSD will expire after some number of reads and writes. Why is this? And how did they fix it for DRAM?

HaydnWVN
  • 3,276
  • 3
  • 27
  • 51

1 Answers1

10

Flash does use electric charges (ppumpkin's comment is wrong). However, they're stored in a Floating Gate. A Floating Gate is electrically isolated. The upside is that it discharges very, very slowly (many years). The downside is that to get electrons in the Floating Gate, you need to apply a very high voltage. (Hot Electron Injection). This causes damage to the isolation.

In DRAM, the electric charges aren't isolated like in Flash cells. They're in fact stored so loosely that they leak away in seconds. A circuit internal to the DRAM chip periodically reads all cells, and rewrites them. That resets 0.9 to 1 and 0.1 to 0. This periodic refresh consumes a bit of energy, and explains why DRAM memory is gone when you turn off the power. But the energy levels per write are so low that this doesn't damage the DRAM at all.

MSalters
  • 8,283