I understand what InProc variables are but how do they make the session faster?
Is it because they have less access time ?
I understand what InProc variables are but how do they make the session faster?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
InProc session is basically kept in memory of the process.
You alternative to use database session will give you the overhead of querying the database, instead of just directly accessing the variables in memory. Yet, it should be unnoticable in smaller apps.
You should consider that having the session in database will give you the advantage to run multiple worker processes and have the same session shared across them.