where is the session object stored? ie, if I have ...
# support-questions-legacy
a
where is the session object stored? ie, if I have multiple machines - will they all have access to a session object?
r
Hey!
The session is stored in the db and on the client. So you can access another machine’s session as well from your backend
That being said, changes to another session from the backend will reflect on that session’s client side only after refreshing. (Unless you have enabled access token blacklisting on the core side)