Reputation: 13
My app is a chat app that sends push notification(message) to members in their address book. So if I have 100 people in my address book - I can send "Hi" to all of those people and they will receive that "Hi" message.
What does Parse request per second mean? This is stupid but will only 30 people receive that message? and the message will not go through for 70 other people?
What does 30/per second mean?
Thank You!
Upvotes: 1
Views: 830
Reputation: 53112
Requests pertains to number of times your App sends a request to the server. If you manage it right, with your channels you could probably send all the push notifications in 1 request. All 100 people will receive the push as long as you haven't exceeded your push limit. (Unlimited pushes to up to 1 million unique recipients).
Now if the push triggers a call to Parse to download more information about the message, and all 100 happen to get the push at the same time, only 30 per second will be allowed. The rest will take a bit longer or time out.
Upvotes: 1