Описание тега persistence
Persistence in computer programming refers to the capability of saving data outside the application memory.
Persistence is the capability of saving data outside of application memory, and of retrieving it later for further processing.
Typically data can be stored into the file system, in flat files or in a database. But persistence can also involve sending data to external applications.
Often persistence is related to /questions/tagged/serialization.
References.
- Persistence @Wikipedia.
- Serialization @Wikipedia.