[google-appengine] Re: Sessions library for Python standard environment runtime

2017-03-12 Thread victor noagbodji
Thanks for making this open source. On Sunday, January 29, 2017 at 8:50:34 PM UTC-5, Devraj wrote: > > Hi everyone, > > We have been working on an alternate session library for the AppEngine > Python standard environment. It implements a few missing nice to haves on > existing projects, builds

[google-appengine] Re: Sessions

2009-12-22 Thread Nickolas Daskalou
How are you setting the sessions? If you're using cookies, are you adding an expires value (that's set in the future)? Without an expires value, cookies will be cleared when the web browser is closed. On Dec 22, 6:44 am, hemodroid hemodr...@gmail.com wrote: It seems like sessions do not last

Re: [google-appengine] Re: Sessions

2009-12-22 Thread Michael Chan
By default, on all servlet container implementations, session is cleared when browser is closed. If you need to persist data across sessions, please use the datastore or cookie. Note that cookie has a maximum size of 4096bytes. Michael On 22 Dec 2009, at 11:56, Nickolas Daskalou wrote: