Re: [google-appengine] Any good articles on realtime app engine web apps?

2015-04-08 Thread Rafael
We do that in this way: 1) appengine offers datastore and our api's. 2) we have a memory service that is hosted on compute engine. 3) when an event happens on our appengine api's, we ping the memory service in compute engine. 4) in compute engine, if that event requires a real time update, we stre

Re: [google-appengine] Any good articles on realtime app engine web apps?

2015-04-08 Thread Nick
It sounds like you're looking for the Channels API . On Wednesday, April 8, 2015 at 6:56:29 AM UTC+10, Vinny P wrote: > > On Mon, Apr 6, 2015 at 10:24 AM, Daniel Robinson > wrote: > >> Is there any articles on writing real time web apps

Re: [google-appengine] Any good articles on realtime app engine web apps?

2015-04-07 Thread Vinny P
On Mon, Apr 6, 2015 at 10:24 AM, Daniel Robinson < daniel.robinson.o...@gmail.com> wrote: > Is there any articles on writing real time web apps in app engine? I'm > thinking along the lines of a simple multiplayer game or chat app. I wanted > to be able to store objects in the datastore and memcac

[google-appengine] Any good articles on realtime app engine web apps?

2015-04-06 Thread Daniel Robinson
Is there any articles on writing real time web apps in app engine? I'm thinking along the lines of a simple multiplayer game or chat app. I wanted to be able to store objects in the datastore and memcache and when they are updated let some pending http request detect the change and return the r