I need to implement real time notification system like stackoverflow(when someone adds answer/comment to a question) to my website. I came to know that channel API is the easiest way to implement that on appengine. But i was taken back by the quota limits for channel API. Only 60 tokens/min can be created when you enable billing.
- How do deal with this channel rate limit when you have a traffic spike(1000 new-users/sec) ?
- How to manage 5000 users(at any point of time)?
Also what is the maximum expiry time for token ?
*Assuming every user should be issued a token.