Port a live system from App Engine Helper to App Engine Patch

Posted by Alexander on Stack Overflow See other posts from Stack Overflow or by Alexander
Published on 2010-03-16T03:02:39Z Indexed on 2010/03/21 22:31 UTC
Read the original article Hit count: 466

Filed under:
|
|
|
|

I am running a live system that is currently serving about 20K pages a day which is based on App Engine Helper (Python) with session support provided by AppEngine utilities.

One problem that I have been having is that sessions are occasionally randomly logging out. I would like to try using the App Engine Patch, since it has "native" django session support, but I am worried that this is possibly going to be like doing a brain transplant. Specifically, current database models are all inhereted from BaseModel provided by the App Engine Helper. While, App Engine Patch does not have this inheritance.

Does anyone know if it is possible to migrate a live system from App Engine Helper to App Engine Patch? If so, do you have any advice or warnings that I should heed, before attempting this transition?

Thank you and kind regards Alex

© Stack Overflow or respective owner

Related posts about appengine

Related posts about session