I know if I have a static class with static properties, then that state will be shared with all threads that are running.
1) But lets say I have a non static class with a static property will that static property (which changes per login, i.e. session_token) be shared across all threads?
If it is shared, then things like session variables cannot be stored in a static property.
2) How would one do this?