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
The plan is to put a n array of chars into GUN db, let it syncs to all clients, and each client do the merging work using causal-tree strategy (by comparing the lamport timestamp to decide who wins), wondering is this something supported by GUN? Thanks.
The text was updated successfully, but these errors were encountered:
But note, GUN does not support JS-style arrays (it has no way to determine if the arrays are atomic, strongly ordered, or loosely ordered), GUN does support sets (tables/collections/lists), and strongly ordered linked-lists can be implemented on top of it, as well as loosely ordered (streamable) items as explained here: http://gun.js.org/explainers/basketball/basketball.html
Would love to see you implement a text editor!!! What are you building it for? I'd love to see it!
(note: this should be a StackOverflow Q, not a bug report, so I'll be closing. Any chance you could copy&paste your Q and my answer into stackoverflow?)
Thanks for the response and details, I'm primarily doing research on various eventually consistent data store for an upcoming project, will keep you posted if I ended up using gun for that!
The plan is to put a n array of chars into GUN db, let it syncs to all clients, and each client do the merging work using causal-tree strategy (by comparing the lamport timestamp to decide who wins), wondering is this something supported by GUN? Thanks.
The text was updated successfully, but these errors were encountered: