Question about Google App Engine. GAE is based on Jetty not Tomcat, and you cannot use ManagerBase.createSession (java.lang.String). A session is distributed and stored in a data warehouse (or memcached). It is tracked using a cookie (called JSESSONID), which is managed by the servlet container. In the Datastore, there are objects of the form _ah_SESSION with an identifier that is a session identifier with the prefix "_ahs". Currently, _ah_SESSION objects are not automatically deleted. So the answer is: currently, the session identifier on the GAE is unique in time .
source share