How are you handling long-term data persistence with CRDTs on a static site?
I’ve been experimenting with Conflict-free Replicated Data Types (CRDTs) to add real-time, Google Docs-style collaboration to a static site. Since there’s no central database to manage state, the clients just sync directly with each other. It sounds perfect for a static setup, but I’m struggling with how to handle long-term data persistence without a traditional server. Are you guys using a peer-to-persist model with something like PouchDB, or is a specialized edge-database still the only reliable way to go?