Differences between revisions 1 and 2
Revision 1 as of 2006-08-24 04:51:33
Size: 438
Editor: ZoomQuiet
Comment:
Revision 2 as of 2009-12-25 07:18:06
Size: 438
Editor: localhost
Comment: converted to 1.6 markup
No differences found!

wsgi 是一个 web 组件的接口规范. wsgi将 web 组件分为三类: web服务器,web中间件,web应用程序. 其目标是提高web组件的可重用性. wsgi 的设计目标是适合尽可能广泛的web应用, 较原始.

典型应用:

  •    1   app = A_WSGI_Application(...)
       2   app = Middleware1(app, ...)
       3   app = Middleware2(app, ...)
       4   ...
       5   server(app).serve_forever()
    

WSGI/AbtWSGI (last edited 2009-12-25 07:18:06 by localhost)