Is it possible to set session cookie path in Google App Engine?
Asked Answered
A

1

12

I'm looking for something that can be done like this setting in Tomcat:

<Context ... sessionCookiePath="/" > ... </Context>
Agnostic answered 19/8, 2017 at 18:14 Comment(2)
Depends on how you are setting cookies in the first place. How are you currently setting the session cookie?Hecate
I'm not doing anything specific other than extending the max age of the cookie. By default it creates a new session cookie for every context path and I want that to change.Agnostic
L
-1

You can persist session information in database like Datastore and use Memcache to get the session/user information faster. Take a look at the web application architecture - https://cloud.google.com/solutions/architecture/webapp

Larkspur answered 30/8, 2017 at 21:12 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.