Django Channels and Celery Example

本项目展示了如何使用 Celery 任务队列设置 Django Channels 项目。「This project shows how to setup a Django Channels project with a Celery task queue.」

Github星跟踪图

Django Channels and Celery Example

This project shows how to setup a Django Channels project with a Celery task queue. The user can start a long running background task and get immediate notification when the task completes without a browser refresh.

You can see an example deployment at http://tasker.vincenttide.com. Note that this deployment contains some extra stuff not covered in this repository.

To run this project you will need to install Redis. It is used both as the Channels layer backend and as the Celery broker.

Then just run:

pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver  # Start daphne and workers
celery worker -A example -l info  # Start celery workers

How to Send Reply Back to Browser Client

The code block below shows how to send a reply back to the browser that originated the task request. message.reply_channel.name contains a unique address in the form of websocket.send!hjnsMbQPiefT.

Channel(reply_channel).send({
    "text": json.dumps ({
        "action": "completed",
        "job_id": job.id,
        "job_name": job.name,
        "job_status": job.status,
    })
})

主要指标

概览
名称与所有者VincentTide/django-channels-celery-example
主编程语言Python
编程语言Python (语言数: 2)
平台
许可证
所有者活动
创建于2016-07-21 00:32:31
推送于2017-12-27 01:51:48
最后一次提交2016-08-21 18:43:11
发布数0
用户参与
星数133
关注者数3
派生数41
提交数14
已启用问题?
问题数2
打开的问题数1
拉请求数1
打开的拉请求数1
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?