In my Django project I am using Celery. I switched over a command from crontab to be a periodic task and it works well but it is just calling a method on a model. Is it possible to update my Haystack index from a periodic task as well? Has anyone done this?
/manage.py update_index
That's the command to update the index from the Haystack documentation but I'm not sure how to call that from a task.