开发者

how to make a thread of never stop, and write something to database every 10 second

i using gae and django

this is my code:

class LogText(db.Model):
    content = db.StringProperty(multiline=True)


class MyThread(threading.Thread):
    def __init__(self,threadname):
        threading.Thread.__init__(self, name=threadname)
    def run(self,request):
        log=LogText()
        log.content=request.POST.get('content',None)
        log.put()

de开发者_运维知识库f Log(request):
    thr = MyThread('haha')
    thr.run(request)

    return HttpResponse('')


It's impossible to do in GAE since all requests (including cron job) have 30 seconds deadline.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜