Extending Page Route handler – configuring the page output cache to be non-browser specific

July 04, 2014 Digital Experience

Configuring output cache is very important part of the performance tuning process of your website. Sitefinity offers an easy way to configure output cache and there is a documentation article available providing detailed information about this.

When you request a Sitefinity page our PageRouteHandler class checks whether there is such a cached version of the page and serves it. If the page is not present in cache we will add it and serve it from there on the next request. By default when you try to access a page of your website using different browsers, separate output cache will be created for every browser. To recognize which browser currently requesting particular page PageRouteHandler relies on browser’s user-agent variable.

In this blog post I will demonstrate how you can change the default behavior and implement a custom page route handler that will create non-browser specific cache. To achieve this we need to create a new route handler that will inherit from PageRouteHandler. The method responsible for managing output cache is ApplyServerCache and we will need to override it in order to change its default behavior. This behavior can be modified by changing the value of UserAgent property.

As I already mentioned above we need to create a new class that will inherit from PageRouteHandler and then override ApplyServerCache method.

using System;
using System.Web;
using Telerik.Microsoft.Practices.Unity;
using Telerik.Sitefinity.Abstractions;
using Telerik.Sitefinity.Web;
 
namespace SitefinityWebApp
{
    public class CustomPageRouteHandler : PageRouteHandler
    {
        protected override bool ApplyServerCache(HttpContextBase context, Telerik.Sitefinity.Modules.Pages.Configuration.OutputCacheProfileElement profile, PageSiteNode siteNode)
        {
            int duration = profile.Duration;
            bool slide = profile.SlidingExpiration;
 
            var cache = context.Response.Cache;
            cache.SetCacheability(HttpCacheability.Server);
            cache.SetExpires(DateTime.Now.AddSeconds(duration));
            cache.SetMaxAge(new TimeSpan(0, 0, duration));
 
            cache.SetValidUntilExpires(true);
 
            if (slide)
            {
                cache.SetSlidingExpiration(true);
                cache.SetETagFromFileDependencies();
            }
             
            cache.VaryByHeaders.UserAgent = false;
            cache.VaryByParams.IgnoreParams = false;
            cache.VaryByParams["*"] = true;
            cache.VaryByHeaders["host"] = true;
            return true;
        }
  
        public static void RegisterType()
        {
            ObjectFactory.Container.RegisterType(typeof(PageRouteHandler), typeof(CustomPageRouteHandler));
        }
    }
}

protected void Application_Start(object sender, EventArgs e)
       {
           Bootstrapper.Bootstrapped += Bootstrapper_Bootstrapped;
       }
 
       void Bootstrapper_Bootstrapped(object sender, EventArgs e)
       {
           ObjectFactory.Container.RegisterType(typeof(PageRouteHandler), typeof(CustomPageRouteHandler));
       }
 

I have prepared and a short video illustrating how our custom page route handler is working.

You can download the complete sample from here.

Kaloyan Savov