You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we recently add json_serialization, and all of our models have fromJson and toJson, it is just extra work to define SQL Tables just to store offline data.
This could be more direct and simple if we switch to a NoSQL approach.
I dislike Isar, ObjectBox and Realm since they required to annotate our models and create more generated files.
Hive is super simple to use and it has an adpater to use ours fromJson and toJson methods.
Realm appears to be more verbose and have a lot of more capabilities we do not need. Hive is just more lighweight, so much clear choice is Hive.
The text was updated successfully, but these errors were encountered:
Since we recently add
json_serialization
, and all of our models havefromJson
andtoJson
, it is just extra work to define SQL Tables just to store offline data.This could be more direct and simple if we switch to a NoSQL approach.
From my research, I found these packages:
I dislike Isar, ObjectBox and Realm since they required to annotate our models and create more generated files.
Hive is super simple to use and it has an adpater to use ours fromJson and toJson methods.
Realm appears to be more verbose and have a lot of more capabilities we do not need. Hive is just more lighweight, so much clear choice is Hive.
The text was updated successfully, but these errors were encountered: