What is the performance hit of enabling sessions on the Google App Engine?
I just turned on <sessions-enabled>true</sessions-enabled>
in my Google App Engine app and now my requests are consistently using 100 more ms of CPU time than before I enabled it. It also makes the user wait an additional 100ms for the server to respond on each request. This seems to be quite a significant cost, I'm not even calling getSession or using it in any way yet and it still adds this extra latency.
Is there something I can do to speed this up?
EDIT: Strangely the extra cpu time is gone now.