Derick Eisenhardt schrieb: > I'm curious, has anyone ever gotten a turbo-charged version of > TurboGears going via Psyco or PyPy? I know Pylons has been run on PyPy > before, but that doesn't necessarily mean Paster, Genshi, SQLAlchemy > or any of the other components of TG2 will. I'm guessing the added > speed boost of a JIT runtime would help out if you're running a site > with large amounts of traffic, that has a lot of dynamic content that > can't be memcached so well.
Psyco gives you gains in numerical processing. It has no class/object-dispatch optimizations such as V8 for JS. So unless you do heavy number-crunching in your app, there is no poteantial for performance gains. Diez --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

