发布于 2015-12-30 00:31:13 | 145 次阅读 | 评论: 0 | 来源: 网友投递
Gunicorn Python的HTTP服务器
Gunicorn 绿色独角兽'是一个Python WSGI UNIX的HTTP服务器。这是一个pre-fork worker的模型,从Ruby的独角兽(Unicorn )项目移植。该Gunicorn服务器大致与各种Web框架兼容,只需非常简单的执行,轻量级的资源消耗,以及相当迅速。
Gunicorn 19.4.2/19.4.3 发布,更新如下:
== 19.4.2 ==
=== Core ===
improvement: handle HaltServer in manage_workers (#1095)
fix: Do not rely on sendfile sending requested count (#1155)
fix: claridy --no-sendfile default (#1156)
fix: LoggingCatch sendfile failure from no file descriptor (#1160)
=== Logging ===
fix: Always send access log to syslog if syslog is on
fix: check auth before trying to own a file (#1157)
=== Documentation ===
fix: Fix Slowloris broken link. (#1142)
Tweak markup in faq.rst
=== Testing ===
fix: gaiohttp test (#1164)
== 19.4.3 ==
fix: don't check if a file is writable using os.stat with SELINUX (#1171)
下载页面: