don't you get the same benefit if you version controlled the db file with git? with git, each commit saves a diff from the previous one as a blob. the difference is that in git, in addition to the diffs, you also have to create a working copy of the db, which means you use up at least 2x the storage your system uses. in your implementation, the diff blobs are the live db, which saves you ~2x storage. is that the main benefit?
devnull3|3 years ago
Have a look at https://github.com/sudeep9/mojo/blob/main/design.md#index
rahimiali|3 years ago