vote up 2 vote down star

How can I implement Comet / Server push in Google App Engine in Python?

flag

67% accept rate

4 Answers

vote up 4 vote down check

At this time, I would rule out doing Comet in App Engine (any language). Comet is based on long-lived HTTP connections, and App Engine will time out any single connection in about 30 seconds or so at most; it's hard to conceive of a worse match!

link|flag
vote up 0 vote down

I found this article which explains a sort of comet. It is not really but you can simulate realtime with it. It uses an external service

http://www.brightyellowcow.com/blog/Comet-AJAX-push-using-PHP-or-Google-App-Engine.html

link|flag
vote up 1 vote down

Comet (or something like it - XMPP API) is on the google app engine roadmap. For now, stay away.

http://code.google.com/appengine/docs/roadmap.html

link|flag
this is not helpful, although already released, the appengine can be used to build chat bots with this API, but it still doesn not allow for long-polling – Bartosz RadaczyƄski Sep 9 at 20:23
you're right. another server is needed to translate the client-side long polling to XMPP messages. the recently release tornado framework looks like a good option! – mainsocial Sep 12 at 0:17
vote up -3 vote down

This is not a simple question to answer. Reading this wiki might give you a hint as to the implementation you'd like to undertake. You might have to write the HTTP server yourself to implement sockets which remain open.

link|flag
I can't write my own HTTP server in Google apps – Lev Aug 17 at 4:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.