Persistent storage: Difference between revisions

From Computer Science Wiki
(Created page with "frame|right|This is a basic concept in computer science Persistent storage refers to non-volatile storage. That is, storage that persists through power cy...")
 
No edit summary
Line 1: Line 1:
[[File:binary.png|frame|right|This is a basic concept in computer science]]
[[File:binary.png|frame|right|This is a basic concept in computer science]]


Persistent storage refers to non-volatile storage. That is, storage that persists through power cycling and system downtime. Persistent storage is needed to store
Persistent storage refers to non-volatile storage. Persistent storage is needed to store data in a non-volatile device during and after the running of a program. Be careful to clearly understand persistent storage is required '''not only when''' your computer is turned off, but also when data needs to be stored due to the end of a computer process or lack of systems resources. Classically, when the system does not have enough RAM and needs to store data on an internal disk.
data in a non-volatile device during and after the running of a program.  
 
To be specific persistent storage is needed when:
 
# the system is powered off
# another process requires volatile memory
# there is a need to store data during and after the running of a program
 
 




Line 11: Line 18:
== Do you have an advanced understanding about this topic? ==
== Do you have an advanced understanding about this topic? ==


 
* Is a disk-based swap file the same thing as persistent storage?


== References ==
== References ==

Revision as of 15:58, 22 August 2016

This is a basic concept in computer science

Persistent storage refers to non-volatile storage. Persistent storage is needed to store data in a non-volatile device during and after the running of a program. Be careful to clearly understand persistent storage is required not only when your computer is turned off, but also when data needs to be stored due to the end of a computer process or lack of systems resources. Classically, when the system does not have enough RAM and needs to store data on an internal disk.

To be specific persistent storage is needed when:

  1. the system is powered off
  2. another process requires volatile memory
  3. there is a need to store data during and after the running of a program



Do you understand this topic?[edit]

  • Identify the need for persistent storage

Do you have an advanced understanding about this topic?[edit]

  • Is a disk-based swap file the same thing as persistent storage?

References[edit]