应用 celery 与 redis 实现 python 多线程的消息传输

正文

http://www.liaoxuefeng.com/article/00137760323922531a8582c08814fb09e9930cede45e3cc000

python module

1
2
sudo pip install Celery
sudo pip install celery-with-redis

redis

官网下载源码,参考README.md
https://redis.io/documentation

1
2
3
make
make test
make install

http://blog.csdn.net/ldar2011/article/details/42773583
在性能较低的主机上,部分测例可能由于超时无法通过从而给出警告。

redis 简易应用

1
2
3
redis-server # 启动服务器
redis-server redis.conf # 利用配置文件启动
redis-cli # 连接

celery + redis

注意需使用 python3
http://www.liaoxuefeng.com/article/00137760323922531a8582c08814fb09e9930cede45e3cc000

其他异步处理可以参考
asyncio