Yes, RAM is volatile memory. This means it only holds data while your computer is powered on, and everything stored in it disappears the moment power is cut. This property is fundamental to how RAM works and is the main reason your unsaved documents vanish during a power outage.
Why RAM Loses Data Without Power
The most common type of RAM in computers is DRAM (Dynamic RAM), and it stores each bit of data as a tiny electrical charge in a microscopic capacitor. These capacitors leak charge naturally over time. In modern chips, a single storage cell holds its charge for anywhere from a few hundred milliseconds to a few tens of seconds before the signal degrades too much to read reliably.
To prevent data loss even while the computer is running, DRAM constantly refreshes itself. Industry standards require every row of memory to be refreshed within 64 milliseconds (or 32 milliseconds in high-temperature environments). During each refresh cycle, the chip reads the charge in each cell and writes it back at full strength. This happens millions of times per second across the entire memory module, all transparently in the background. The moment you remove power, those refresh cycles stop, the charges drain, and the data is gone.
SRAM vs. DRAM: Both Volatile, Different Mechanisms
Your computer actually uses two types of volatile RAM. DRAM fills the main memory sticks you see on a motherboard, while SRAM (Static RAM) is used in the small, fast caches built into your processor.
SRAM doesn’t use capacitors or need refresh cycles. Instead, it holds data using a circuit of transistors that stay in one state as long as power flows. This makes SRAM faster, since it never pauses to refresh, but it takes up far more physical space per bit. That’s why processor caches are measured in megabytes while your main RAM is measured in gigabytes. Both types are volatile: cut the power, and both lose their contents.
Why Computers Use Volatile Memory at All
If volatility means losing data on power loss, you might wonder why computers rely on it so heavily. The answer is speed. Modern DDR4 RAM responds to requests in roughly 70 to 100 nanoseconds. The fastest NVMe SSDs, which are non-volatile, respond in about 40 microseconds. That makes RAM roughly 400 to 500 times faster than the best solid-state storage available.
When you open an application, your operating system copies the relevant data from your SSD or hard drive into RAM so the processor can work with it at those much higher speeds. This is why adding more RAM often makes a sluggish computer feel faster: the processor spends less time waiting for data to be fetched from slower, non-volatile storage. Volatile memory’s speed advantage comes directly from its simple electrical design. Reading and writing tiny charges in integrated circuits is inherently faster than the processes flash memory and SSDs use to store data permanently.
How Much Power RAM Actually Needs
Keeping those capacitors charged doesn’t take much energy, but it does require a constant supply. Modern DDR5 memory operates at 1.1 volts, down from 1.2 volts for DDR4 and 1.5 volts for DDR3. Each generation has become more power-efficient, and DDR5 modules now include their own power management chip to convert the motherboard’s 3.3-volt supply down to 1.1 volts more efficiently. Even so, the voltage must remain steady. A dip to zero, even briefly, means data loss.
Non-Volatile RAM Technologies
Researchers have spent years developing memory that combines RAM’s speed with permanent storage. Technologies like MRAM (which stores data using magnetic states), phase-change memory (which uses different physical states of a material), and resistive RAM (which changes the resistance of a material to represent data) all aim to do this. These designs don’t rely on electrical charge that leaks away, so they can hold data without power.
Some of these have reached commercial products in niche applications, but none have replaced standard DRAM in everyday computers. The manufacturing challenges and costs remain significant. For now, the RAM in your laptop or desktop is almost certainly volatile DRAM, and that’s unlikely to change in the near term.
What This Means in Practice
The volatility of RAM has a few everyday consequences worth understanding. Your operating system, open browser tabs, running applications, and any unsaved work all live in RAM while you’re using them. Saving a file moves that data from volatile RAM to non-volatile storage like an SSD. If your computer loses power or crashes before you save, anything only in RAM is lost permanently.
This property also matters for security. Because RAM clears itself when powered off, sensitive data like encryption keys and passwords don’t persist after shutdown. However, data doesn’t vanish at the exact instant power is cut. The charges in DRAM cells take a short time to fully dissipate, and cooling the memory chips can slow that process. This is the basis of a technique called a cold boot attack, where someone with physical access to a machine can potentially recover fragments of data from RAM shortly after shutdown. Full disk encryption and proper shutdown procedures help mitigate this risk.

