On Sat, Sep 26, 2009 at 6:42 AM, Simon Clemen Pedersen <[email protected]> wrote: > > Hi, > > I'm currently contemplating writing a service using the Google app > engine. This service has some rather heavy computing requirements. > > I read the following in the documentation: > > "Application code only runs in response to a web request, a queued > task, or a scheduled task, and must return response data within 30 > seconds in any case" > > I'm pretty much in doubt as to whether the 30 sec. limit is enough for > my processing to complete. Is this a hard limit, and is there any > workarounds, as this can disqualify google app engine as a feasible > platform ......
Using the taskqueue you can break up your work into small chunks and they will run one after another. None of the others will return anything to a browser though, good for post-browser finalizing processing. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
