I am referring to the answer from this post, where it is proposed that sessions can be used to store global state per-user: Are global variables thread safe in flask? How do I share data between requests?
Specifically about sessions, when flask application is configured to run on multiple processes, then is session shared across processes?
Example: If 1 URL request hits process A, and the next request from the same user hits process B, then will the session set when the request hit process A be available in the process B?