On Sun, Jul 3, 2011 at 3:02 PM, Mengu <[email protected]> wrote: > > this application is connected to the news portal via iframe. so every > visitor to the portal is a visitor to this app. so after tv > commercials the news portal was getting huge amount of requests so the > statistics app was getting that requests as well. so if tg can handle > this then this is great because i'm going to re-write the application. >
As I said before how many parallel requestors are running is a variable that needs to counted when performing performance tests, that is the reason why you cannot count the visits to a site as a benchmark. Raw performance tests are performed with only 1 request at time, otherwise you are able to achieve infinite requests per second by simply turning on another server process and adding another requestor, the only limit is your hardware. While TG is probably a lot slower than Pyramid it is not something you really care in real world as the Template rendering engine and the Database will be a lot slower than the framework itself. Many website run on TG, some even huge, and none of them reported it as a performance issue for now. -- 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.

