|
|
|
|
|
by roncesvalles
479 days ago
|
|
Offline-first databases are a hard problem because there isn't just one copy of the database on the user's side, there are N copies - every browser tab or device on which the user can open the local database and make an edit. It's basically an AP multi-master database (= the same row can be edited at different nodes at the same time), and you likely cannot achieve good results without a database that natively supports multi-master operations. |
|
Not an easy problem for sure, but the web platform is surprisingly capable these days.