共用方式為


快取設定檔 < 設定檔>

概觀

專案的 <profiles> 元素 <caching> 會指定要用於輸出快取的設定檔。

相容性

版本 備註
IIS 10.0 未在 IIS 10.0 中修改專案 <profiles>
IIS 8.5 未在 IIS 8.5 中修改專案 <profiles>
IIS 8.0 未在 IIS 8.0 中修改專案 <profiles>
IIS 7.5 未在 IIS 7.5 中修改專案 <profiles>
IIS 7.0 元素 <profiles><caching> 元素是在 IIS 7.0 中引進。
IIS 6.0 N/A

安裝程式

元素 <profiles><caching> 元素包含在 IIS 7 的預設安裝中。

作法

如何設定頁面輸出快取

  1. 開啟 [Internet Information Services (IIS) 管理員

    • 如果您使用 Windows Server 2012 或 Windows Server 2012 R2:

      • 在工作列上,依序按一下 [伺服器管理員]、[工具],然後按一下 [Internet Information Services (IIS) Manager]。
    • 如果您使用 Windows 8 或 Windows 8.1:

      • 按住Windows鍵,按字母X,然後按一下[主控台]。
      • 按一下 [系統管理工具],然後按兩下 [ Internet Information Services (IIS) Manager]。
    • 如果您使用 Windows Server 2008 或 Windows Server 2008 R2:

      • 在工作列上,按一下 [ 開始],指向 [ 系統管理工具],然後按一下 [ Internet Information Services (IIS) 管理員]。
    • 如果您使用 Windows Vista 或 Windows 7:

      • 在工作列上,按一下 [開始],然後按一下[主控台]。
      • 按兩下 [系統管理工具],然後按兩下 [ Internet Information Services] (IIS) Manager
  2. 在 [ 連線] 窗格中,移至您要設定頁面輸出快取的連線、月臺、應用程式或目錄。

  3. 在 [ 首頁] 窗格中,捲動至 [ 輸出快取],然後按兩下 [ 輸出快取]。
    I S Manager 視窗的螢幕擷取畫面。在主窗格中選取 [輸出快取]。

  4. 在 [ 動作 ] 窗格中,按一下 [ 新增...]

  5. 在 [ 新增快取規則 ] 對話方塊中,于 [副檔名 ] 方塊 中輸入您想要快取的副檔名,然後選取 [ 使用者模式 快取] 選項、[ 核心模式快取 ] 選項或兩者。

  6. 選取您要用於快取的選項,然後按一下 [ 確定]。
    [新增快取規則] 對話方塊的螢幕擷取畫面。系統會檢查使用者模式快取和核心模式快取。

組態

屬性

無。

子元素

元素 描述
add 選擇性項目。

將輸出快取設定檔新增至輸出快取設定檔的集合。
clear 選擇性項目。

從輸出快取設定檔集合中移除輸出快取設定檔的所有參考。
remove 選擇性項目。

從輸出快取設定檔集合中移除輸出快取設定檔的參考。

組態範例

下列組態範例會啟用使用者模式快取和核心模式快取,這兩者在 IIS 7.0 中預設都會啟用。 它也會使用 <add> 專案所包含的 <profiles> 專案,為副檔名為 .asp 的檔案啟用輸出快取。 它也會使用 原則 屬性來輸出快取頁面,直到頁面變更為止;它會使用 kernelCachePolicy 屬性對核心快取執行相同動作。

<configuration>
   <system.webServer>
      <caching enabled="true" enableKernelCache="true">
         <profiles>
            <add extension=".asp" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" />
         </profiles>
      </caching>
   </system.webServer>
</configuration>

下列程式碼範例會將輸出快取大小上限設定為 1 GB,並將可儲存在輸出快取中的回應大小上限設定為 512 KB。

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

範例程式碼

下列範例會設定副檔名為 .asp 檔案的頁面輸出快取,並將 IIS 設定為在使用者模式和核心模式中快取,直到 ASP 檔案變更為止。

AppCmd.exe

appcmd.exe set config -section:system.webServer/caching /+"profiles.[extension='asp',policy='CacheUntilChange',kernelCachePolicy='CacheUntilChange']" /commit:apphost

注意

當您使用 AppCmd.exe 來設定這些設定時,請務必將 認可 參數 apphost 設定為 。 這會將組態設定認可至ApplicationHost.config檔案中的適當位置區段。

C#

using System;
using System.Text;
using Microsoft.Web.Administration;

internal static class Sample {
   private static void Main() {
      using(ServerManager serverManager = new ServerManager()) { 
         Configuration config = serverManager.GetApplicationHostConfiguration();
         ConfigurationSection cachingSection = config.GetSection("system.webServer/caching");
         ConfigurationElementCollection profilesCollection = cachingSection.GetCollection("profiles");

         ConfigurationElement addElement = profilesCollection.CreateElement("add");
         addElement["extension"] = @"asp";
         addElement["policy"] = @"CacheUntilChange";
         addElement["kernelCachePolicy"] = @"CacheUntilChange";
         profilesCollection.AddAt(0, addElement);

         serverManager.CommitChanges();
      }
   }
}

VB.NET

Imports System
Imports System.Text
Imports Microsoft.Web.Administration

Module Sample
   Sub Main()
      Dim serverManager As ServerManager = New ServerManager
      Dim config As Configuration = serverManager.GetApplicationHostConfiguration
      Dim cachingSection As ConfigurationSection = config.GetSection("system.webServer/caching")
      Dim profilesCollection As ConfigurationElementCollection = cachingSection.GetCollection("profiles")
      Dim addElement As ConfigurationElement = profilesCollection.CreateElement("add")
      addElement("extension") = "asp"
      addElement("policy") = "CacheUntilChange"
      addElement("kernelCachePolicy") = "CacheUntilChange"
      profilesCollection.AddAt(0, addElement)
      serverManager.CommitChanges()
   End Sub
End Module

JavaScript

var adminManager = new ActiveXObject('Microsoft.ApplicationHost.WritableAdminManager');
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST";
var cachingSection = adminManager.GetAdminSection("system.webServer/caching", "MACHINE/WEBROOT/APPHOST");
var profilesCollection = cachingSection.ChildElements.Item("profiles").Collection;

var addElement = profilesCollection.CreateNewElement("add");
addElement.Properties.Item("extension").Value = "asp";
addElement.Properties.Item("policy").Value = "CacheUntilChange";
addElement.Properties.Item("kernelCachePolicy").Value = "CacheUntilChange";
profilesCollection.AddElement(addElement, 0);

adminManager.CommitChanges();

VBScript

Set adminManager = createObject("Microsoft.ApplicationHost.WritableAdminManager")
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST"
Set cachingSection = adminManager.GetAdminSection("system.webServer/caching", "MACHINE/WEBROOT/APPHOST")
Set profilesCollection = cachingSection.ChildElements.Item("profiles").Collection

Set addElement = profilesCollection.CreateNewElement("add")
addElement.Properties.Item("extension").Value = "asp"
addElement.Properties.Item("policy").Value = "CacheUntilChange"
addElement.Properties.Item("kernelCachePolicy").Value = "CacheUntilChange"
profilesCollection.AddElement addElement, 0

adminManager.CommitChanges()