httpserver.runsimple is slower to response than httpserver.runbaisic. 2009-11-02
shwdai 发件人: Anand Chitipothu 发送时间: 2009-11-02 14:57:59 收件人: webpy 抄送: 主题: [webpy] Re: About httpserver.runsimple and httpserver.runbasic On Mon, Nov 2, 2009 at 12:19 PM, shwdai <[email protected]> wrote: > I found there two method in webpy's httpserver.py > > normally wsgi.py will start server with httpserver.runsimple > > but I saw httpserver.runsimple is much slower than httpserver.runbasic, so i > choice httpserver.runbasic to start web server. slower to start or slower to respond? > Is it ok? Is there any problems in it? httpserver.runbasic is implementation of HTTP Server using SimpleHTTPServer module in python. httpserver.runsimple uses CherryPy WSGI Server, which is supposed to be much better. Anand --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
