I am building a photo sharing app using parse as my backend. Now I want to update the numberOfLikes attribute of each photo object after the user clicks the like button, using:
[photoObject incrementKey:@"numberOfLikes"];
[photoObject saveInBackground];
My question is, lets say several users liked the same photo at the same time, will these like requests be in a processing queue? (Will Parse handle them one by one?)Assuming this photo has 0 likes, then 5 users like it at the same time, given that the network conditions are the same, will the final result after saving be 1 or 5?
Sorry if this question looks silly or my description is confusing. I am pretty new to Parse. Thanks.