兼容WSGI的Web服务器:FAPWS

jopen 11年前

FAPWS (Fast Asynchronous Python WSGI Server) 是一个完全兼容 WSGI 的 Web 服务器,用于 Python 环境。设计的目标是小型快速,可处理大并发连接。

  • WSGI complient
  • FAPWS is asynchronous on the network side (can handle as much as concurrent request as your kernel can handle).
  • Can treat different python objects: file objects, list objects and iterrable objects
  • Has the "timer" feature which allow you to execute recurrent tasks (like a cron). Thus you can imagine to split tasks linked to your webpages with other administrative tasks.
  • Integrated logging decorator
  • Gzip support for on the fly compression
  • Static file support for fast delivery of assets
  • Run you Django app thru FAPWS

项目主页:http://www.open-open.com/lib/view/home/1363315552687