Koen Bok wrote: > I'm trying to wrap my head around the threadlocal plugin to decide if > we need it for our app. We are building a GUI point of sale system. > Until now I have done everything in sessions, basically in one global > shared session. I have read all of the documentation about the > threadlocal strategy but I still cannot decide if we should use it. > Basically we hoped that someone could compare the threadlocal strategy > to the default strategy and some examples in what kind of apps you > would use it. > Hi Koen,
I was in your position with the global shared session thing. Then I realised that's what threadlocal is, so I switched and just used the threadlocal plugin. Its all behind a facade module, so it's transparent to my application whether or not I'm using threadlocal or specific sessions. Huy --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" 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/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
