如何在IIS 7.5上启用文件夹级缓存?

时间:2018-03-28 16:25:58

标签: caching iis-7.5 static-content

我在IIS7.5上有一个虚拟目录,它有.mp4文件。

我想在文件夹级启用缓存,以便视频无需缓冲即可播放。可以使用以下“web.config”吗?我想将“Web.config”放在文件夹中。

shift

我也想将缓存限制为1GB,我该如何实现?

2 个答案:

答案 0 :(得分:1)

这可能会对您有所帮助:

<configuration> 
 <location path="showStockPrice.asp">     
   <system.webserver>        
     <caching>         
       <profiles>
         <add varybyquerystring="*"location="Any"
           duration="00:00:01" policy="CacheForTimePeriod"            
           extension=".asp">
       </profiles>
     </caching>
   </system.webserver>
 </location> 
</configuration>

更多详情herehere

答案 1 :(得分:0)

<configuration>
  <system.web>
    <httpRuntime maxRequestLength="1048576" />
  </system.web>
</configuration>

1048576 = 1024 Mb 你可以阅读这篇文章:windows server 2008 IIS 7.5 maximum file accept limit

<configuration>
    <system.webServer>
        <staticContent>
            <mimeMap fileExtension=".mp4" mimeType="video/mp4" />
            <mimeMap fileExtension=".m4v" mimeType="video/m4v" />
     </staticContent>
    </system.webServer>
</configuration> 

阅读这篇文章,也许它可以帮到你。 https://blogs.iis.net/bills/how-to-add-mime-types-with-iis7-web-config