I have a pretty huge amount of data with multiple nesting coming from the server for my react-native app. The problem with using async storage is, each time i want to modify the data, it has to do JSON.stringify
and JSON.parse
and persist and get the data which is taking a pretty huge amount of time.
Can I store objects in Realm or Firebase without having to stringify them? I have gone through this. Does firebase store JSON
objects as is or is it stringifying them behind the scenes? Which DB in react-native supports storing of Objects?