Em Quarta 07 Junho 2006 16:12, Jorge Vargas escreveu: > > The database part will be sync, since all users use the same connection. > and unless I'm mistaken you can't send 2 requests at the same time.
That's not true. You can have a connection pool with, e.g., 10 or 15 connections. So you can have 10 or 15 operations simultaneously happening on the database. Having a serialized series of operations would be a very poor thing performance-wise. > each TG-db interaction is wrap inside a transaction so this wont be a > problem. It depends on the operation and the application of the data. -- Jorge Godoy <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

