Comment by rememberlenny
5 years ago
Check out http://www.roomservice.dev
Turns your front end app multiplayer with a library.
They manage the hard part and give you a simple API to get the benefits of realtime/syncing/diffing.
5 years ago
Check out http://www.roomservice.dev
Turns your front end app multiplayer with a library.
They manage the hard part and give you a simple API to get the benefits of realtime/syncing/diffing.
> The major downside of having an “always syncable” data structure is that it gets really big, really quick
Perhaps it would be prudent to read the actual article before tossing off this sort of comment since it's indeed the whole point?
Normally I would downvote a comment that amounts to "read the article", except that this one is entirely on point.
One of the classic problems was size and performance. However both problems have now disappeared. Operations are `O(log(n))` and the size overhead is a factor of 1.5-2.0. That's quite workable.
Mind elaborating more on how’s is it better than CRDT?