Re: [google-appengine] how to use Background_threads?

2014-04-25 Thread saintthor
thanks. 在 2014年4月22日星期二UTC+8下午8时26分18秒,Vinny P写道: > > On Thu, Apr 17, 2014 at 12:22 PM, saintthor > > wrote: > >> >> https://developers.google.com/appengine/docs/python/modules/#Python_Background_threads >> i copy the code, run and get FrontendsNotSupported. >> > > > Yes, because the code in your

Re: [google-appengine] how to use Background_threads?

2014-04-22 Thread Vinny P
On Thu, Apr 17, 2014 at 12:22 PM, saintthor wrote: > > https://developers.google.com/appengine/docs/python/modules/#Python_Background_threads > i copy the code, run and get FrontendsNotSupported. > Yes, because the code in your link was intended to be run within a backend module. On Thu, Apr

[google-appengine] how to use Background_threads?

2014-04-17 Thread saintthor
https://developers.google.com/appengine/docs/python/modules/#Python_Background_threads i copy the code, run and get FrontendsNotSupported. i want to input some data in a request and then return. let the backend(?) analyse the data after returning. so i use Background_threads. right? is there an