문제

When someone uses the OutputCache directive in an ASP.NET WebForms/MVC application, does it actually do any caching server-side, like using the Cache or does it only setup some properties in the Response object like the Cache-Control property?

Cheers :)

도움이 되었습니까?

해결책

Output Caching caches the entire rendered markup of an ASP.NET web page or User Control for a specified duration.

다른 팁

It caches the results and stores them in memory on the server.

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