Reputation: 2311
What the best way to save big bulk of data in react native will be in react native app?
I already tried some things and here us my thoughts:
let dogs = realm.objects('Dog');
let tanDogs = dogs.filtered('color = "tan" AND name BEGINSWITH "B"');
So with realm I also thinking how it will affect on app performance.
What you think about it? Maybe I am not right? How you store your data?
P.S. BTW in future I want to create sync with server.
Upvotes: 2
Views: 1447
Reputation: 1447
You should have no issues storing 1000 objects in Realm. It is optimized for storing large amounts of data and only loads data into memory when needed.
Upvotes: 2