I have been working on an app that has a like button. Anytime a user likes or unlikes an item, a request will be sent to the server to change the field in the DB.
Unfortunately there is a 1 second delay from the server time to do the change before the UX reflecting the change.
What's the best method to make this real time for the users? Should we use Core Data with some local Queing mechanism for such changes in the background? Any suggestions on what's the standard to do these changes real time? (similar to pressing the like button in FB).
Thanks, Ross