> Can session files be turned of ?

you can turn off sessions by

session.forget()

and also store sessions in the database
that is how it works on GAE. In every default db.py you have:

if request.env.web2py_runtime_gae:
  db = DAL('gae')
  session.connect(request, response, db=db)

Reply via email to