The internal webpy server is based on CherryPy (http:// www.cherrypy.org/), which is multi-threaded. Simultaneous requests will be served by different threads, so yes it should solve your problem. That said, make sure your code is threadsafe.
On Apr 14, 11:37 am, Matthew Webber <[email protected]> wrote: > I'm considering using the web.py internal web server for a small > intranet-only site (so neither performance nor top security is a > requirement). > > I currently use the wsgi reference server that comes bundles with > Python, which is only single threaded, meaning that if one browser > request takes a long time to server, it blocks any request from any > other browser. > > Does web.py's internal web server avoid this problem, or do I still > have to use it behind another web server? -- 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.
