Contents

There is an issue that our pyramid based website is so slowly, and the connection is always blocked whenever the client counts rise. It’s started by pserve, a script file inside pyramid project, and the configure file here:

1
2
3
4
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = xxx

The web server of it used is waitress Github The arguments

Waitress is a WSGI server. Here is the wikipedia page of Web Server Gateway Interface, and here is the official portal: PIP3333. Here are some tutorial 简介wsgi.org

Contents