Just wondering If I set a page up to use the cache for 30 seconds is this only served to the same user that accessed the page first time round or is it configurable?
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.
You can cache on a per-user basis, but generally the
ApplicationCacheis best used for – you guessed it – application-wide data. E.g. the contents of an autosuggest list could be cached to avoid reading it from the DB for every request.Output caching is similar and you can set the duration, etc. in Page directives.
It’s a potentially big topic, but I’d take a look here to start off.