摘要: Web Application Deployment Using NginxNginx is a very high performant web server / (reverse)-proxy. It has reached its current popularity due to being... 阅读全文
posted @ 2015-06-16 17:21 高山流的不是水 阅读(478) 评论(0) 推荐(0) 编辑
摘要: Does Gunicorn suffer from the thundering herd problem?The thundering herd problem occurs when many sleeping request handlers, which may be either thre... 阅读全文
posted @ 2015-06-16 14:29 高山流的不是水 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 服务器模式Gunicorn 基于 pre-fork 模式,这意味着有一个主进程管理工作的子进程.主进程对客户端的工作业务有了解.所有的请求和响应都是工作子进程处理.主进程主进程是一个简单的循环,监听各种进程的信号并做出相应的反应.它通过监听信号(比如TTIN/TTOU/CHLD)来管理正在运行的工作... 阅读全文
posted @ 2015-06-16 10:55 高山流的不是水 阅读(771) 评论(0) 推荐(0) 编辑