Reputation: 4545
I am adding a long running task to Appengine's Push Queue. I would then like to redirect my user to a status page which upon refreshing will tell the user how many chunks of the task has been completed.
Aside from using an external datastore to keep track of the task's progress, what are my options?
(I don't see any documentation on Task or retrieving it in another view. The only thing I have found online is this SO answer from 3 years ago: Checking status of Task Queue in Google App Engine)
Upvotes: 1
Views: 515
Reputation: 693
Other than datastore, you could:
Upvotes: 2