摘要
本文部分内容来源于网络,个人收集整理,请勿传播
https://www.cnblogs.com/jiadi321/p/9758542.html
https://www.cnblogs.com/gdkl/p/6807667.html
https://www.jianshu.com/p/be2b587a900e
https://blog.csdn.net/shudaqi2010/article/details/71172683
Gunicorn
(绿色独角兽)是一个被广泛使用的高性能的python Wsgi http server
,只支持在Unix系统上运行,移植自Ruby
的unicorn
(独角兽)项目。使用pre-fork master-worker
模型(在gunicorn
中,master
被称为arbiter
),具有使用非常简单,轻量级的资源消耗,以及高性能等特点。
Gunicorn
服务器作为wsgi app
的容器,能够与各种Web框架兼容(flask
,django
等),得益于gevent
等技术,使用Gunicorn
能够在基本不改变wsgi app
代码的前提下,大幅度提高wsgi app
的性能。