1.9.7.Disabling Session
Session
A peice of memory in the web server allocated to each user
Session kills scalability
Stateless
Modify web.config
<system.web> <sessionState mode="Off"></sessionState>
Last updated
Was this helpful?
Session
A peice of memory in the web server allocated to each user
Session kills scalability
Stateless
Modify web.config
<system.web>
<sessionState mode="Off"></sessionState>
Last updated
Was this helpful?