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

How to enable folder level cache on IIS 7.5?

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

我想在文件夹级别启用缓存,这样视频就可以在没有缓冲的情况下播放。下面的"web.config"可以用吗?我想将 "Web.config" 放在文件夹中。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <staticContent>
      <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="01:00:00" />
    </staticContent>
  </system.webServer>
</configuration>

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

这可能对您有帮助:

<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>

更多详情here and here

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

1048576 = 1024 MB 你可以阅读这个post: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