Reputation: 38
Please suggest me ,is it better to store data using Realm and is there any limitation for data storing?
Upvotes: 0
Views: 3792
Reputation: 81539
Limitations from the official documentation:
The only limitation that I find iffy is that you still can't store List<Integer>
or List<String>
(list of primitives), you have to make a RealmObject that contains the value (RealmList<TelephoneNumber>
for example), or store the list in a String field.
The primitive list limitation will be removed by realm-core 3.0.0 and realm-java 4.0.0.
Upvotes: 6
Reputation:
No limitation on how much data to be stored. It only depends on the Hard disk size.
Upvotes: 0