I have the following scenario: I am parsing a JSON Response from a server into a sqlite database and then I am using the database and datamodels for querying, filtering, ...
A colleague of mine, an iOS developer, says, that he doesn't do JSON parsing into datamodels and persistence into database anymore. He just takes the dictionaries, makes them app-wide available and for persistence saves them into a binary file.
Now I would like to know, does anybody do it the same way on Android? Will it be a problem to have say 1000 HashMap-Objects in the App (each having about 10 other Objects (Strings))? Seems quite much to me, will it drop my app performance? But why does it work well on iOS?