I am using Django-Celery 3.0.23.
When I run the command python manage.py celery worker
, the models do not get loaded instantaneously.
This is something opposite as seen in python manage.py celeryd
.
To test this I put a print statement in my models.py
.
I read that celeryd
is an older command for celery worker
.
I am new in using django celery. Am I missing something?