I read the article, and I started to think about a a novel idea: a functional crash-only file system for Backups. It should have the properties:
- It is crash-only
- Its data is never lost or deleted
- All data is appended to some files
When I considered the idea, I feel that it may be very easy to do it in some functional programming language, such as Haskell. After some googling, it seems that such systems may be in financial markets. Is there available any such file system for personal use? How hard would it be to do such system?
