IIS 输出缓存与 ASP.NET 输出缓存

IIS 输出缓存与 ASP.NET 输出缓存

引自互联网The ASP.NET page output cache is separate from the IIS 7 output cache. In applications that use the Integrated ASP.NET mode, the ASP.NET page output cache can be used programmatically for any content-type, much like the IIS 7 output cache.

那么我什么时候应该选择使用 IIS 输出缓存,什么时候应该选择 ASP.net 输出缓存?另外,他们写的 asp.net 缓存“可以用于任何内容类型“?

答案1

IIS 输出缓存利用 ASP.NET 输出缓存来缓存所有类型的应用程序的内容,而不仅仅是 ASP.NET。

如果您正在编写 ASP.NET 应用程序,您将完全控制 ASP.NET 输出缓存,包括其所有详细设置和其他内容。另一方面,如果您正在构建 PHP 应用程序,IIS 仍将提供输出缓存(利用 .NET 框架提供的功能),而您无需为此接触任何 .NET 代码。

推荐阅读:

相关内容