Parse.com - saveAll on PFObject does it account for 1 API call?

后端 未结 5 784
离开以前
离开以前 2020-12-19 13:04

I have an IOS app and I want to make sure I minimally use the API request to parse.com due to the 30/sec request limitation on the free tier. Could some one please clarify i

5条回答
  •  轮回少年
    2020-12-19 13:20

    From what I have seen using Parse, saving many PFObjects accounts as 1 API call.

    However, the thing I don't know about is that if there are any limits on the number of objects to be saved at once and still be considered as 1 API call.

    Also I recommend that you test it yourself. Try saving multiple objects at once and see how your API calls number change in the dashboard.

    Please note that batch operations will fail as a whole if one object fails (e.g. object does not exist).

提交回复
热议问题