5c24$ |
About Offline First ยท RxDB - Documentation
https://rxdb.info/offline-first.html
Saved on 2021-09-29 [18899 edays] via rxdb.info
Modified 2023-08-07 [19576 edays]
offline
https://rxdb.info/offline-first.html
Saved on 2021-09-29 [18899 edays] via rxdb.info
Modified 2023-08-07 [19576 edays]
offline
Offline-First (aka local first) is a software paradigm where the software must work as well offline as it does online. To implement this, you have to store data at the client side, so that your application can still access it when the internet goes away. This can be either done with complex caching strategies, or by using an offline first database (like RxDB) that stores the data inside of IndexedDb and replicates it from and to the backend in the background. This makes the local database, not the server, the gateway for all persistent changes in application state.