Gunicorn是一个unix上被广泛使用的高性能的Python WSGI UNIX HTTP Server。
和大多数的web框架兼容,并具有实现简单,轻量级,高性能等特点
在使用前需要下载
pip install gunicorn
当我们的项目运行并且接口测通的情况下,我们可以把项目放在gunicron上面运行
Gunicorn -w 1 -b 0.0.0.0:10023 --keep-alive 70 main:app
参数含义:
-w int 用于处理工作进程的数量
-b address 绑定服务器socker
–keep -alive 连接上等待请求的秒数
Gunicorn查看进程的命令
pstree -ap|grep gunicorn