Where does cached data is stored in Asp.Net application (heap or ram)
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.
Eoin is absolutely correct! Caching only means storing the data from your secondary memory or hard disk (database, files, etc) into the primary memory or application memory. It speeds up the execution because reading from app mem is faster than reading from disks. So if say a file is stored in Cache, you can read it quicker than if it wasn’t and you had to read it from disk.
For more details on caching in asp.net visit this link
General idea on cache memory can be found here