Hey all!

I want to spawn a thread when Apache starts that will do some stuff in
the background. The thread will need to access the Django data model.
I'd really like the solution to work with the development environment
too (non-apache).

I was thinking about just using a singleton during a per-session/view
request, but this means that nothing will happen before the first
request comes in (also, there is the question of how safe it is to keep
a reference to the data model around from the view thread).

The actual problem is I want to clean up crud left around from inactive
users every 24 hours.

I don't really want to have to use cron to spawn my "cleanup" code.

Any suggestions on how to do this?

-S


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to