SirixDB - a temporal storage system, which creates a new snapshot on each transaction commit
I'm developing an open source storage system for versioning data at the subfile level, especially well suited for SSDs due to its log-structured copy-on-write (COW) nature and never overriding data. The core is implemented in Java.
Key features are:
- A …