Gunicorn上跑pyramid

 

 

看到 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 监控 服务  进程

 

你可能感兴趣的:(id)