12

我在用户控件的基类上使用 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 属性实现吗?我会使用什么设置?变化控制?

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

谢谢。

4

3 回答 3

22

要回答你的第一个问题,让我先告诉你,你的问题本身就有答案;)。'Shared' ... 是的,这就是关键字 :) 要在缓存中为所有页面的用户控件提供一个实例,请在 @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 引用用户控件的页面后面的代码中分配它。

例如,如果 aspx 上的用户控件是:

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

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

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

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

于 2009-05-24T09:35:52.173 回答
1

您需要的是使用声明性属性缓存用户控件的多个版本

于 2009-05-21T19:10:34.123 回答
1

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

  • 没有内置方法可以根据控件属性值进行更改。VaryByControl 仅适用于控件。
  • 提供缓存版本时,您的控制字段将为空。您不能在代码中更改缓存持续时间 - 您会得到 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 并且强制转换失败。

于 2014-09-12T19:35:59.190 回答