So this is what I did:-
1. I decided to use mecache to store sessions and modified my db.py file as
below:-
if request.env.web2py_runtime_gae:
    from gluon.contrib.memdb import MEMDB
    from google.appengine.api.memcache import Client
    session.connect(request, response, db = MEMDB(Client()))

2. I also went to gaehandler.py and changed KEEP_CACHED=TRUE , which as per
the docs is supposed to "request a dummy url every 10secs to force caching
app"

It all worked fine on devappserver. However After I deploy it.. I get this
Internal errorTicket issued:
unknown<http://travpartner.appspot.com/admin/default/ticket/unknown>

Am I doing something really naive!

Reply via email to