If i change the web.config file , does my application delets all cache objects ?
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.
When you change the web.config file, your application pool resets. This will clear out any in-memory caches that exist in the process space of the application pool.
If you cache items on the disk or in a database (or other shared resource not in the same memory space as you application), the cache will not be cleared.