In GAE Std, for php72, the default session store is configured. This default is `session.save_handler=files` which uses /tmp to store session files.
In GAE Std, each instance has its own /tmp and the /tmp is empty on any cold start. So this is not really a viable option for session storage (e.g., different requests from the same user may land on different instances, and thus different sessions). You can use php.ini to configure an alternative (e.g., MySQL on Cloud SQL, or Cloud Memorystore), but you need to do some set up work (e.g., create a Cloud SQL instance, configure access). We need to have better documentation about this; I will create an internal bug to have some created. On Wednesday, 21 August 2019 02:10:53 UTC-7, Andy Whittle wrote: > > Hi Jason, > > We're using whichever method GAE Standard env provides to store sessions. > > On Tuesday, August 20, 2019 at 2:40:24 AM UTC+1, Jason Collins wrote: >> >> How are you storing your sessions? Is it the /tmp folder default, or have >> you used something like MySQL (Cloud SQL) to store sessions? >> >> >> -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/f4a3b221-d955-472d-8d8c-c3039aeba445%40googlegroups.com.