ID:1710171
 
Keywords: calls
I have information that needs to be constantly updated. What are some efficient ways to update this information without increasing calls?
Updating the data as it changes is always ideal. Instead of having a primary loop that constantly updates things enmass you simply do what you need to do as it needs to be done.

The ideal method is using getters and setters for your variable changes, which will enable you to catch changes to things and do the update, and you only need to update one piece of information.