Virtual Memory Flashcards
How can we fix running out of primary memory
Purchasing more RAM
Terminating processes
Virtual Memory
Installing more RAM
we can purchase and install more RAM so that we can store more data.
This is not always ideal because:
RAM can be expensive.
We may only need more memory on a temporary basis.
Virtual Memory
Virtual Memory is a technique where we use secondary storage as if it were RAM.
Virtual memory is not always ideal since:
Virtual Memory can have negative impacts on performance.
Virtual Memory can have negative impacts on the health of Solid State Disks (SSDs).
We might have limited space in secondary storage.
Terminating processes
Each program/process will use a certain amount of memory.
By closing some processes that we are not using, we can free the memory that they are using.
This is not always possible because we may need all the processes.
How does virtual Memory work
Paging
Moves pages to HDD
Moves pages to RAM
Paging
Memory can be split into sections called ‘pages’.
Virtual Memory works by moving these pages between the Random Access Memory (RAM) and the secondary storage.
Moving pages to HDD
If a page is not being used, then we might want to put it into Virtual Memory.
When a page is moved to the HDD, it is put into a special file called the pagefile.
Other processes can then use the memory that we just freed in the RAM.
Moving pages to RAM
When we want to use a page again, we first need to move it back to the RAM.
We do this by swapping the page that we want with one that is already in the RAM.