Issue
A database should provide a way to persist all data to disk. Currently ADBMS only holds data in-memory. We could use the Relation-classes to provide persistence:
- use akka' s
PersistentActor for saving state to disk
Dactor contains relations, which are themselves PersistentActors
- maybe interface:
object User extends RowRelation with AkkaPersistence(config) { ... }
- application dev. can still declare transient relations via omitting the trait
AkkaPersistence
- relations handle their persistence themselves
Problem Description
Actor State is not persisted to disk.
Supporting Information
Issue
A database should provide a way to persist all data to disk. Currently ADBMS only holds data in-memory. We could use the
Relation-classes to provide persistence:PersistentActorfor saving state to diskDactorcontains relations, which are themselvesPersistentActorsobject User extends RowRelation with AkkaPersistence(config) { ... }AkkaPersistenceProblem Description
Actor State is not persisted to disk.
Supporting Information