gunicorn是一种unix上被广泛使用的Python WSGI UNIX HTTP Server
WSGI是什么:
先说下 WSGI 的表面意思,Web Server Gateway Interface 的缩写,即 Web 服务器网关接口。
WSGI是一种规范,定义了 Web服务器 如何与 Python应用程序 进行交互
pip3 install gunicore
gunicore的作用是使用命令行来启动服务
如果是这样一个python 文件:
arvin.py:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'hello world'
if __name__ == '__main__':
app.debug = True
app.run()
gunicore arvin:app
此时,gunicore默认监听一个127.0.0.1:8000的web server,
gunicorn -b 0.0.0.0:8080 arvin:app
gunicorn -w 4 arvin:app
gunicorn -w 4 -b 0.0.0.0:8080 arvin:app
-b 表示 gunicorn 开发的访问地址
-w 表示开启多少个线程
arvin:python文件名
app:变量名,python文件中可调用的wsgi接口名称
Gunicorn 服务器作为wsgi app的容器,能够与各种Web框架兼容(flask,django等),大幅度提高wsgi app的性能。
而python 的web框架本质就是一种wsgi app