The session object is in your scope under the session key, and you can use it like any other collection. For example, if you wanted to save a property called foo, you would write :
session.foo = 6;
and then to retrieve information from the session :
var myFoo = sesssion.foo;
Once you modify a session, the cookie will automatically be set, and the object will be save to the DB if modified.
Sessions timeout. this is not implemented yet - so now they don't timeout
