> I noticed the website still says the latest version is 0.23 but that > is clearly not true, right? What is the state of web.py now? Any up-to- > date documentation?
That's true, but 0.3 should be released today or tomorrow. It has much better documentation: http://webpy.org/docs/0.3 We can also start talking about how to make it even better. > If I go with web.py I plan to deploy it with nginx+mod_wsgi. Is web.py > single-threaded? I'm assuming it is because of the GIL. So ideally I > would start several instances of web.py and have nginx reverse-proxy > them, right? web.py relies on the wsgi adapter to handle processes and threading. I haven't used nginx's mod_wsgi, but with the adapter I use (flup) you can set it to either start several instances or start several threads. I usually pick threads and the GIL isn't a big deal because threads are frequently waiting on connections or the database. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
