We are storing user permission information in session object when sign in success. We are reading this session object in every action. When accessing session if session is Null, we do reinitialize the session. We are using MVC 5. My queries are, 1. Since in every action there may be chances for reinitialize the session(if session is Null). Does this affect application response time? 2. By doing this every request locks the session object. How do avoid session lock?
Thanks, Kannan Eswar.