I stumbled upon a thread on the django group recently where questions about Turbogears performance were raised:
http://groups.google.ca/group/django-users/browse_thread/thread/ab1117393da45e19 "TurboGears would be a terrible choice. Python does not do well on threads and has been known to lock up solid when executing a fork() out of a thread. Also, unless you feel your webserver should use very little of your computers resources, the threaded approach of TurboGears may not give you what you want. Python folk made a design decision way back to implement a Global Interpreter Lock that means one thread runs at a time in any process, even if you have 100 threads and 32 processor cores, one thread will be running on one processor. So while TurboGears has a very short learning curve, it is not really for production performance. " I have a feeling that this poster is perhaps misinformed but I don't have enough Turbogears specific knowledge to comment. Can anyone else offer an informed opinion about this poster's comment? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

