使用ASP.NET中的PartialCaching通过控件属性改变

时间:2009-05-19 04:11:00

标签: asp.net caching outputcache

我在用户控件的基类上使用PartialCaching属性。

我希望缓存的控件根据控件实例上设置的属性而变化。

例如:

<mycontrols:control1 runat="server" param1="10" param2="20" />

...输出将与具有不同属性的控件实例分开缓存:

<mycontrols:control1 runat="server" param1="15" param2="20" />

...此控件也将单独缓存:

<mycontrols:control1 runat="server" param1="10" param2="25" />

但是,如果两个单独页面上的两个控件实例具有相同 param1和param2属性,我希望它们作为一个对象进行缓存(以便共享缓存控件)。

使用PartialCaching属性可以实现上述用例吗?我会使用什么设置? varyByControl?

此外,是否可以在运行时使缓存持续时间变量?

感谢。

3 个答案:

答案 0 :(得分:22)

要回答你的第一个问题,我先告诉你,你的问题本身就有答案;)。 “共享”...是的,这是关键字:)要在所有页面中为用户控件创建缓存中的单个实例,请在@OutputCache指令中设置Shared ='true'。这应该在用户控制级别设置,即在ascx页面中设置。

要基于用户控件属性缓存用户控件,应在PartialCachingAttribute的varyByControls部分中指定属性的完全限定名称。如果有多个属性应该用分号分隔。

<%@ Control Language="C#" AutoEventWireup="true" 
CodeFile="WebUserControl.ascx.cs" 
Inherits="UC_WebUserControl" %>
<%@ OutputCache Duration="60" 
VaryByControl="UC_WebUserControl.param1;UC_WebUserControl.param2" 
VaryByParam="none" Shared="true" %>

或者您还可以包含用户控件的PartialCache属性:

[PartialCaching(60, null, "UC_WebUserControl.param1;UC_WebUserControl.param2", null, true)]
public partial class UC_WebUserControl : System.Web.UI.UserControl
{
    public string param1 { get; set; }
    public string param2 { get; set; }

}

或者在两个值的组合上缓存控件的另一种方法是:

[PartialCaching(60, null, "UC_WebUserControl.BothParams", null, true)]
public partial class UC_WebUserControl : System.Web.UI.UserControl
{
    public string param1 { get; set; }
    public string param2 { get; set; }

    public string BothParams    
    {
        get { return String.Concat(param1, param2); }
    }

}

最后一个参数(true)指定共享。持续时间由60指定。请参阅链接How to: Cache Multiple Versions of a User Control Based on Parameters

要回答第二个问题,要在运行时为用户控件变量设置缓存持续时间,可以通过两种方式完成:

  1. 在后面的用户控制代码中分配:

    [PartialCaching(60, null, "UC_WebUserControl.BothParams", null, true)]
    public partial class WebUserControl1 : System.Web.UI.UserControl
    {
        ...
        protected void Page_Load(object sender, EventArgs e)
        {
            this.CachePolicy.Duration = new TimeSpan(0, 0, 60);
        }    
    }
  2. 您可以使用用户控件的ID在引用用户控件的页面后面的代码中分配它。

  3. e.g。如果aspx上的用户控件是:

    <mycontrols:control1 ID="ucControl1" runat="server" param1="15" param2="20" />
    

    然后在aspx的代码中,你应该写:

    this.ucControl1.CachePolicy.Duration = new TimeSpan(0, 0, 60);
    

    仅供参考,如果用户控件和页面都被缓存:如果页面输出缓存持续时间小于用户控件的持续时间,则用户控件将被缓存,直到其持续时间到期,即使页面的其余部分为为请求重新生成。例如,如果页面输出缓存设置为50秒并且用户控件的输出缓存设置为100秒,则用户控件每两次到期一次,页面的其余部分将过期。

答案 1 :(得分:1)

答案 2 :(得分:1)

我发布了这个非常古老的问题的新答案,因为接受的答案非常不准确。 这个正确的答案是:

  • 没有内置方式可以根据控件属性值而变化。 VaryByControl仅适用于控件。
  • 提供缓存版本时,您的控制字段将为null。您无法在代码中更改缓存持续时间 - 您将获得NullReferenceException。
  • 如果VaryByControl设置为任何值,则有一个错误会根据控件ID和NamingContainer ID改变缓存。这就是它有时似乎有效的原因。错误就在这里:http://referencesource.microsoft.com/#System.Web/xsp/system/Web/UI/PartialCachingControl.cs#530

我最近在这里写了这篇博文:http://tabeokatech.blogspot.be/2014/09/outputcache-on-user-controls.html

一种可以实现此功能的方法是在代码隐藏中自行调用PartialCachingControl的构建器方法,并在guid参数中嵌入您想要改变的属性值:

    // PhControls is an asp:PlaceHolder
    protected void Page_Init(object sender, EventArgs e)
    {
        for (int i = 0; i < 3; i++)
        {
            System.Web.UI.StaticPartialCachingControl.BuildCachedControl(PhControls, String.Format("Test{0}", i), String.Format("1234567{0}", i), 180, null, null, null, null, new System.Web.UI.BuildMethod(GetBuilderDelegate(i)), null);
        }
    }

    public Func<Control> GetBuilderDelegate(int number)
    {
        return delegate()
        {
            var control = (UserControls.Test)LoadControl("~/UserControls/Test.ascx");
            control.Number = number;
            return control;
        };
    }

整齐地处理代码隐藏中不同的缓存持续时间。确保在执行此操作时从ascx中的标记中删除OutputCache指令。否则,LoadControl将为您提供另一个PartialCachingControl,并且转换失败。