I looked at django-celery tutorial and I think it will really help me running the background tasks without letting the users to wait. However, I have a specific requirement in the program such that when user enters a date, django should be able to do the scheduling and defer the execution to a later time. I have used at program before but it gives a lot of permission issues. But when I read the documentation for Celery, I can only see that Celery supports cron like tasks called @periodic_task. I’m sure that it also provides at like mechanism, but I couldn’t find any documentation. Can anybody point me to some resources or simply tell me how to achieve that? Thanks.
I looked at django-celery tutorial and I think it will really help me running
Share
The docs state that you can schedule tasks to execute at a specific time, using the eta argument.