session.connect(request,response,masterapp='myotherapp')
and the current app and myotherapp will share sessions and session
cookies. Please try it.
db=SQLDB(....) or GQLDB()
session.connect(request,response,masterapp='myotherapp',db=db)
will do the same for sessions in db.
session.secure()
and if you do not want to save the session
session.forget()
They work for disk based and db based sessions.
Massimo
Massimo