-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reducing the number of paths of remote-change event #266
Labels
enhancement 🌟
New feature or request
Comments
✋ May I try this out? I have experienced this nuisance when creating a yorkie example on my own. |
@hunkim98 Sure. 👍 |
This was solved by #691. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description:
Reducing the number of paths of
remote-change
events.Changes to the document are propagated to peers as
remote-change
events.When inserting nested objects, there is a problem that the path becomes excessively large.
For example, inserting a nested object into one field will create paths for
remote-change
like this:clientA
inserts nested object.Currently
clientB
receivesremote-change
event.We can reduce paths by leaving only the top-level path when the nested object changes.
Why:
Excessive accumulation of paths can lead to unnecessary resource usage.
The text was updated successfully, but these errors were encountered: