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
When storing children links in the merkle/clock/clock.go:ProcessNode method mc.headset.Write(ctx, root, rootPrio) is called in the loop for every child although it stores the same value (not child related)
The text was updated successfully, but these errors were encountered:
This will likely be related to #1066. Since we merge in the reverse direction, the headset Write is basically doing useless work as you note here.
Once 1066 is fixed, this will change, as it will make the "merge direction" for the CRDT forwards instead of backwards. Which will mean that each headset update will actually be a new update
When storing children links in the
merkle/clock/clock.go:ProcessNode
methodmc.headset.Write(ctx, root, rootPrio)
is called in the loop for every child although it stores the same value (not child related)The text was updated successfully, but these errors were encountered: