If I make up a site with Django-channels(nginx + channels, I like its websocket ability), Could I still adding in some celery app/tasks run at background as other normal django project?
Could Django-channels co-exists with celery
1.4k Views Asked by longnight At
2
Yes, you can use both.
For example https://vincenttide.com/blog/1/django-channels-and-celery-example/
You create websocket, server send real-time message.
https://github.com/VincentTide/django-channels-celery-example/blob/6ddc5ace0e1b99031ad0505ba0ec20be3f87704d/templates/jobs/index.html#L73
You receive request, create task (and tell which channel to reply).
You receive task, run it. and send real-time message to browser via daphne.