Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 759 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 759 Bytes

Chapter6: The Memory Hierarchy

In practice, a memory system is a hierarchy of storage devices with different capacities, costs, and access times.

  • CPU registers hold the most frequently used data.
  • Small, fast cache memories nearby the CPU act as staging areas for a subset of the data and instructions stored in the relatively slow main memory.
  • The main memory stages data stored on large, slow disks, which in turn often serve as staging areas for data stored on the disks or tapes of other machines connected by networks.

This idea center around a fundamental property of computer programs known as locality.