I am trying to save user data that is fetched from a server. It's much like a social network with friends to store and user data like name, email, etc.. I was thinking of creating a custom class to handle this or adding these to a sqlitedatabase.
Performance oriented, what is the best way to save these? the sqliteDatabase or the object? I'm thinking that creating objects for every friend the user has, will eat up a lot of memory?
I would like to save these so the app only has to update them when they are changed on the server, saving on data usage and improving performance.