mvtango <martin.vir...@gmail.com> writes: > my users keep several browser windows open in my application, I need > to keep session information for all these windows separate. But I have > only one session object - modifying it while the user works in window > A and window B in parallel might get me in trouble if Request A and > Request B are under way in parallel. > > So I thought about locking the session, modifiying it, saving it > during the request. I thought about locking the session at the > database level. > > Questions: Anybody run into this? Would locking be the right way to do > it? Or are there any other ways of solving this?
I doubt it is possible to tell from which browser window a request comes if you use session cookies. I guess you need to either send the session ID along as POST data or make it part of the URL. Matthias --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---