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