I have a django model which has frequency
and end_date
attributes, I'm required to perform a task related to that model at regular intervals of time i.e., the frequency
until the end_date
is reached. I used celery to perform the task for all the entries in the database which are not expired yet (i.e., end_date
is not reached yet), How do I go about executing a particular task based on its frequency?
Thanks.