|
|
|
|
|
by pgte
3151 days ago
|
|
If you don't mind me asking, what browser and version did you use? It uses WebRTC for peer-to-peer communication, which is yet unsupported / untested in some browsers. To answer your question:
The collaborative data is saved locally by every participating peer. There are plans to add remote tracking and pinning, increasing the persistence and availability guarantees:
https://github.com/ipfs-shipyard/peerpad/issues/90 |
|
If I understand correctly, each keystroke in the pad generates a new snapshot, which has a distinct IPFS ID.
Should the remote pinning service publish a list of all IPFS IDs on the p2p network, and store each individual document (each one keystroke away from the previous one) in the history graph?
Should it keep the complete list of CRDT operations, and map IPFS IDs to CRDT operations IDs, so that it can reconstruct any document when it is requested?
Is there a way to use the properties of CRDT that I am not seeing?