문제

I think it has been related to caching concept but don't know how is it used.

도움이 되었습니까?

해결책

You can read about page output caching on MSDN: http://msdn.microsoft.com/en-us/library/ms178597.aspx

The directive allows you to specify settings such as whether a page should have its output cached, for how long, and other configuration options.

Output caching can be a performance benefit to a page that is expensive to run. Once it is cached, future requests will be served from the cache without the page having to run again.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top