Note that to support the concurrent stacks (from different sessions), there are two main strategies:
a ThreadLocal
a weak-key based concurrent hashmap (Jason's implementation)
In an ideal world, we would keep the stack of operations per session but today, I don't know a way on ORM to attach arbitrary data to a session.
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
Note that to support the concurrent stacks (from different sessions), there are two main strategies:
In an ideal world, we would keep the stack of operations per session but today, I don't know a way on ORM to attach arbitrary data to a session.