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
Currently, the history is optimized out and dropped on delta updates (or more specifically, generating a delta for these types only includes the most recent value - not all the possible changes that have happened since a previous update).
However, if you want to be able to view the state of the CRDT at any arbitrary point in its history, then that additional detail becomes worth maintaining, even thought the overall CRDT size can become notably larger.
The current logic would require a few updates to maintain this history, but it should be pretty directly doable as an initialization option.
The text was updated successfully, but these errors were encountered:
Currently, the history is optimized out and dropped on delta updates (or more specifically, generating a delta for these types only includes the most recent value - not all the possible changes that have happened since a previous update).
However, if you want to be able to view the state of the CRDT at any arbitrary point in its history, then that additional detail becomes worth maintaining, even thought the overall CRDT size can become notably larger.
The current logic would require a few updates to maintain this history, but it should be pretty directly doable as an initialization option.
The text was updated successfully, but these errors were encountered: