How can I implement Comet / Server push in Google App Engine in Python?
|
|
|
|
|
|
|
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! |
||
|
|
|
|
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 |
||
|
|
|
|
Comet (or something like it - XMPP API) is on the google app engine roadmap. For now, stay away. |
||||
|
|
|
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. |
||
|
