哪个是在IIS 6中控制ASP.net输出缓存内存大小的最佳方法?

时间:2011-07-07 13:39:05

标签: asp.net iis-6 outputcache

有人知道如何控制ASP.net用来维护输出缓存的总内存量吗?我遇到了一些与此相关的问题和内存问题,我想限制IIS 6服务器中缓存的增长。

谢谢!

2 个答案:

答案 0 :(得分:1)

http://www.iis.net/ConfigReference/system.webServer/caching

<configuration>
   <system.webServer>
      <caching enabled="true" enableKernelCache="true" maxCacheSize="1000" maxResponseSize="512000"/>
   </system.webServer>
</configuration>

干杯。

答案 1 :(得分:0)

它很遥远而且它是错误的,但是我记得,web.config有特殊的部分可以指定缓存大小。我忘记了它的名字,但我确信它存在了75%!