PeteGashek / puzzlebazar

Automatically exported from code.google.com/p/puzzlebazar
0 stars 0 forks source link

Switch to using GAE standard HTTP sessions instead of our custom sessions #109

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Right now, we're probably doing a double trip to the datastore. Once to get 
the standard datastore-backed GAE HttpSession and once to access our custom 
Session object. We should consider storing serializable content directly in 
the HttpSession instead, via setAttribute() see:

http://code.google.com/appengine/docs/java/config/appconfig.html#Enabling_Ses
sions

Original issue reported on code.google.com by philippe.beaudoin on 3 May 2010 at 10:08