Skip to content

Latest commit

 

History

History
18 lines (7 loc) · 314 Bytes

File metadata and controls

18 lines (7 loc) · 314 Bytes

Question 59

What makes the virtual memory mechanism performant?

Answer

Because of locality:

  • The pages are rarely loaded from disk -- we rarely leave the working set of pages.
  • The translation mechanism is rarely fully used, most accesses are handled through TLB

prev +++ next