5

在 ASP.NET 站点中,我想为某些静态文件添加“Expires”标头,因此我clientCache为这些文件所在的文件夹添加了这样的配置:

<system.webServer>
  <staticContent>
    <clientCache cacheControlMode="UseExpires" httpExpires="Wed, 13 Feb 2013 08:00:00 GMT" />
  </staticContent>

如果可能,我想以httpExpires编程方式计算 的值,例如将其设置为文件上次更新的时间 + 24 小时。

httpExpires有没有办法通过调用方法来配置缓存控件以获取值?

如果没有,有什么替代方案?我想过编写一个自定义的 http 处理程序,但也许有一个更简单的解决方案......

编辑:请注意,这些是静态文件,因此常规的 asp.net 页面处理程序不提供它们。

4

2 回答 2

7

您可以使用Response.Cache以编程方式设置缓存。

这是一个很好看的教程。

基本上,您希望将缓存策略设置为Public(客户端 + 代理)并设置过期标头。有些方法的命名相当笨拙,但这个方法很简单。

HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.Public);
HttpContext.Current.Response.Cache.SetExpires(yourCalculatedDateTime);

(ASP.NET 设计者不太喜欢得墨忒耳法则,是吗?)

或者,您可以通过Response.Headers集合访问听者,您可以在其中明确更改它们。

这两种方式都可以在所有 ASP.NET 处理程序(aspx、asmx)中访问,并且可能在您可以访问当前 HttpContext 的任何地方进行更改。

于 2013-02-12T16:31:04.430 回答
6

感谢@HonzaBrestan,他让我在 HTTP 模块的想法上走上了正轨,我想出了一个像这样的解决方案,我想分享它以防它对其他人有用。

using System;
using System.Collections.Generic;
using System.IO;
using System.Web;

public class ExpirationModule : IHttpModule {

    HttpApplication _context;

    #region static initialization for this example - this should be a config section

    static Dictionary<string, TimeSpan> ExpirationTimes;
    static TimeSpan DefaultExpiration = TimeSpan.FromMinutes(15);
    static CrlExpirationModule() {       
        ExpirationTimes = new Dictionary<string, TimeSpan>();
        ExpirationTimes["~/SOMEFOLDER/SOMEFILE.XYZ"] = TimeSpan.Parse("0.0:30");
        ExpirationTimes["~/ANOTHERFOLDER/ANOTHERFILE.XYZ"] = TimeSpan.Parse("1.1:00");
    }

    #endregion

    public void Init(HttpApplication context) {
        _context = context;
        _context.EndRequest += ContextEndRequest;
    }

    void ContextEndRequest(object sender, EventArgs e) {
        // don't use Path as it contains the application name
        string requestPath = _context.Request.AppRelativeCurrentExecutionFilePath;
        string expirationTimesKey = requestPath.ToUpperInvariant();
        if (!ExpirationTimes.ContainsKey(expirationTimesKey)) {
            // not a file we manage
            return;
        }
        string physicalPath = _context.Request.PhysicalPath;
        if (!File.Exists(physicalPath)) {
            // we do nothing and let IIS return a regular 404 response
            return;
        }
        FileInfo fileInfo = new FileInfo(physicalPath);
        DateTime expirationTime = fileInfo.LastWriteTimeUtc.Add(ExpirationTimes[expirationTimesKey]);
        if (expirationTime <= DateTime.UtcNow) {
            expirationTime = DateTime.UtcNow.Add(DefaultExpiration);
        }
        _context.Response.Cache.SetExpires(expirationTime);
    }

    public void Dispose() {
    }

}

然后你需要在 web config (IIS 7) 中添加模块:

<system.webServer>
  <modules>
    <add name="ExpirationModule" type="ExpirationModule"/>
  </modules>
</system.webServer>
于 2013-02-13T13:21:22.770 回答