Recently to allow concurrent requests at some level and to increase the performance, we enabled EnableSessionState="Readonly"
for one our .aspx
page for read only access for session data.
I would like to know enabling this in web farm, will this effect any data loose or any other impact in server or user ?
Current Web Farm Settings:
Lets say We have 4 servers.
1. Lets say User A, requests for the page http://example.com/StudentDetails.aspx
, this request hits Load Balancer.
2. Load Balancer based on traffic transfer the request to any 1 from 4 avialable servers.
3. Each server Has InProc
Session State mode enabled.
4. We ensure that the same server handles subsequent requests from the same client.
Any help would be great.