greetings all, i have a question regarding storing data between controllers. i located similar posts regarding this, where the solution was to use the Session object to store data. the problem i'm experiencing however is that i need to store multiple objects, that are thread locked. this a problem using the Session as storage because cPickle throws an exception as you cannot serialize an object that is in thread.lock state which mine are. my objects do not need to be serialized and are only required for the length of the user's session.
i was thinking of adding an additional class to globals.py which has similar attributes to Session, but does not serialize its contents. i'm still learning the framework so apologies in advance for any newbie-ish questions. :) cheers!

