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

Posted by zjm1126 on Stack Overflow See other posts from Stack Overflow or by zjm1126
Published on 2010-04-23T06:27:02Z Indexed on 2010/04/23 6:33 UTC
Read the original article Hit count: 152

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()

def Log(request):
    thr = MyThread('haha')
    thr.run(request)

    return HttpResponse('')

© Stack Overflow or respective owner

Related posts about django

Related posts about google-app-engine