Conversation

I've maybe made the problem needlessly hard on myself by using content-addressable identifiers for CRDT log structures (including their parent pointers). Did that so I could serialize to IPFS or similar, but it means I have to rebase the whole tree whenever the structure changes.
4
12
If you perform the conversion on read (and after validating the hash) as suggested in the article I think this should be fine?
1
Ah, er, it does work like Git, where logs (i.e. commit operations) are hashed (including the parent pointer). The issue is that if you change the commit format, even for one commit, all the downstream hashes change.
1
Show replies