> there could be race conditions among several "parallel" requests. The way 
> to turn this behaviour "off" is to avoid using session (make sure you don't 
> have forms in the page, because they require a sesson to be there) and use 
> session.forget(). You can read about it on the book.
>

Note that to unlock the session file, you should call 
session.forget(response). Also, sessions are not locked if stored in the 
database or in cookies, so no need to worry about this in those cases (but 
of course, then you might have to worry about race conditions).

Anthony 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to