Where is session data stored?

The session tokens are stored in memory and aren’t persisted to database (by design) to ensure performance is kept high.

What you are seeing is done by design to force developers to actively think about session expiration, session refresh, and re-auth flow. From experience, this has been a major pain in live games and we’ve had to make sure this becomes a development pain first :frowning:

Hope this helps.

1 Like