欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Gunicorn上跑pyramid

程序员文章站 2024-01-06 22:16:34
...

 

 

看到 Instagram他们用了这个服务器于是仔细看了一下,是prefork 多进程 WSGI http server.


使用非常简单

 

 

 

1:  pip install pyramid gunicorn


2:  paster create -t pyramid_alchemy

 

3:  python setup.py develop

 

 4 : gunicorn_paster -w5 development.ini 

 

另外 可通过 gunicorn-consol 监控 服务  进程