Reputation: 54949
I am developing a Food Recommendation Engine. We have a lot of photos which has to be downloaded from the server during the usage of the Application.
Do we need to cache or store the images locally just to reduce the network activity ?
Upvotes: 0
Views: 317
Reputation: 15269
If the data from the server is not going to change then you should store them but if the data is changed then you can do two things
Upvotes: 1