On Thu, Mar 13, 2014 at 12:14 PM, aloo <[email protected]> wrote:
> Has anyone found any good realtime browser push notification service that > works well with appengine? What are have your experiences been like? > We have ~25k simultaneously connected users so price is a concern for us. > Hi Aloo, Is there a specific reason that the Channel API ( https://developers.google.com/appengine/docs/python/channel/ ) doesn't work for your use case? If you can't use the Channel API there are multiple other solutions out there. Since you cited price as a concern, the cheapest solution would probably be to get an external machine (a Compute Engine VM or similar) and run a simple SocketIO server to push out messages: http://socket.io/#how-to-use If you have some extra spending money, you can try out Firebase ( https://www.firebase.com/pricing.html ) which has a nice API for pushing out messages. It's a bit pricey though, so make sure you read through the pricing and overview pages. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
