I have an application that uses Python appengine, there is a service that updates the status of users, if an admin person has a page open, I would need it to update in real time. I know that appengine has CRON and task queues, what would be the correct way to handle this? Should I set an update flag in the models that that triggers jscript?
I have an application that uses Python appengine, there is a service that updates
Share
The Channel API can be used to send real-time(ish) data to clients, without the need of clients polling the server.