Skip to content Skip to sidebar Skip to footer

Django Timed Events

I want to schedule events to happen for my users. Is there an efficient way to do this in Python/Django easily? I'd prefer not to poll a priority queue. Thanks! Edit: I want to cla

Solution 1:

Solution 2:

You should probably look at: http://celeryproject.org/

From the website:

"Celery is already used in production to process millions of tasks a day."

Solution 3:

How about django-cron?

Post a Comment for "Django Timed Events"