6

问候!

我创建了一个 APSX Web 表单,它根据一些提供的参数返回一个远程图像。它可以这样使用:

<img src="/ImageGetter.aspx?param1=abc&param2=123" />

ImageGetter.aspx 的标记和代码如下所示:

<%@ OutputCache Duration="100000" VaryByParam="*" Location="ServerAndClient" %>
<%@ Page Language="C#" AutoEventWireup="false" EnableSessionState="False" CodeBehind="ImageGetter.aspx.cs" Inherits="ACME.Helpers.ImageGetter" %>

此代码在 ImageGetter.aspx 的 Page_Load 方法中调用:

byte[] data = null;
Dictionary<string, string> file_locations = GetImageLocations(param1, param2);
try
{
    data = new WebClient().DownloadData(file_locations["main"]);
}
catch (WebException wex)
{
    try
    {
        data = new WebClient().DownloadData(file_locations["backup"]);
    }
    catch (Exception e)
    {
        throw;
    }
}
Response.ContentType = "image/jpeg";
Response.OutputStream.Write(data, 0, data.Length);
Response.End();

根据我的测试,它似乎没有缓存。这可能与输出缓存有关,还是我应该根据查询字符串参数编写自己的缓存来存储字节数组?

4

3 回答 3

10

尝试删除 Response.End() ,因为这将过早终止线程并防止发生输出缓存。

请参阅:http ://bytes.com/groups/net-asp/323363-cache-varybyparam-doesnt-work

可能希望考虑使用 ASHX 处理程序并使用您自己的缓存方法。

于 2009-04-13T21:51:01.517 回答
2

正如 Codebrain 所说,使用 ASHX 通用处理程序并使用 HttpRuntimeCache(缓存对象)来完成这项工作。它会更快,更灵活。

于 2009-04-13T23:56:42.243 回答
0

您的问题可能是IE 中的错误- 如果使用 HTTP 响应标头,它无法缓存Vary:*,但 IIS 默认返回它,因为它在 HTTP 1.1 规范中。

尝试将以下内容添加到您的 web.config 中:

<system.web> 
    <caching>
        <outputCache omitVaryStar="true" />
    </caching>
</system.web> 
于 2010-06-08T11:32:57.127 回答