I response to some urls, my views need to start some potentially time
taking actions. So how can I start background process, would it be as
simple as

...
t = threading.Thread(...)
t.setDaemon(True)
t.start()
return HttpResponse(..)

Or does django/apache have limitation on how threading can be used?
Would my thread be killed, once the response is sent back?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to