Regarding RxDB on IndexedDB (with Dexie), and possibly some other use-cases.
RxDB seems to sync with Google Drive using timestamp of every item in every collection? This may work with some hundreds of items in all collections but won't work with more than that 'cause Google Drive will rate-limit, and the time for that number of HTTP queries is enomous.
I guess the mechanism should be changed to storing a list of modified ids for reasonable sync
- eg. changed-ids.json in Google Drive
- changed-ids list in internal data of RxDB
Regarding RxDB on IndexedDB (with Dexie), and possibly some other use-cases.
RxDB seems to sync with Google Drive using timestamp of every item in every collection? This may work with some hundreds of items in all collections but won't work with more than that 'cause Google Drive will rate-limit, and the time for that number of HTTP queries is enomous.
I guess the mechanism should be changed to storing a list of modified ids for reasonable sync