What’s the go-to solution to save huge amounts of data locally with @expo.dev? WatermelonDB? TinyBase? Pure Expo SQLite? AsyncStorage/MMKV just aren’t cutting it for my use case. Would love recommendations!
Comments
Log in with your Bluesky account to leave a comment
Saving thousands of key-value pairs where the key is a date string and the value is an array of strings (country codes) with logic like no duplicate country codes allowed per date might become pretty slow on older devices, I‘m afraid. Especially when I do more advanced query operations 😅
I just don’t want to risk having to migrate data storage later on. I‘d rather not touch that again so I don’t risk deleting the user‘s travel data for tax and visa compliance.
I'll go with a privacy-first & local-first approach. Keeping the user's location data on their device. The app might feel creepy otherwise. Might add optional iCloud sync later.
Comments