-
Out of the Tar Pit: https://github.com/papers-we-love/papers-we-love/blob/master/design/out-of-the-tar-pit.pdf
-
Is there any Rust impl of this anywhere?
1 Like
For anyone else stumbling across this, something of interest is "Entity Component Systems"
The "Entity-Component" storage can be viewed as the database/table part, and the "Systems" can be viewed as the "reactive" part that updates other "Entity-Components".
So if you have a DAG where each node was an "ECS", it would sort of approximate the above.