uwsgi 1.4之后,无缝支持gevent
image.pnguwsgi 1.9可使用相关命令,加载gevent模块
image.png启动命令
uwsgi --gevent 100 --gevent-monkey-patch --http :9090 -M --processes 4 --wsgi-file wsgi.py
注意!!
1、注意单纯在代码里加import gevent。。。对uwsgi而无效
2、使用gevent的话,lazy-app必须为true(多进程)
相关链接
https://uwsgi-docs-zh.readthedocs.io/zh_CN/latest/Gevent.html
网友评论