You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
yes - but it depends on what operations you want to have?
adding and updating branches would be easy - if you want to be able to move a subbranch to another place, a little more tricky, but still possible.
Basically, you'd need to flatten it down so it's something like a key/value store, and implement branches as a pointer to the subtree. then you move a branch just by saying that branches[x_id].children[y_id] = true something like that, when someone updates a property on y they would just set branches[y_id][key] = value.
Hello there,
are there any efforts to build a tree-like commutatively replicated data type?
Do you think this is feasible?
The text was updated successfully, but these errors were encountered: