Skip to main content

A Donut Cache Implementation for DD4T

I was presenting in a previous post "A Simple Output Cache", in the form of a Java Servlet filter that was caching requests to DD4T pages and subsequently serve them from cache. In this post I am enhancing the output cache idea to make it more flexible.

Namely, this post presents a donut cache solution that allows for caching parts of the page output. In Tridion terminology, the donut cache will allow a Tridion developer to specify at Component Presentation level which CP to cache and which not to cache. To make it even more flexible, the Page Template itself can be configured to allow being cached entirely or not.

The control over what PT/CT is cached is specified in Tridion CM by making use of metadata on the respective template. As such, I defined a metadata field "cache" that I added to the CT/PT Metadata Schema. The field can have two values only, based off a predefined list -- "true" or "false". When false, it indicates the output of the template should not be cached by the Output Cache filter. Default value, true.

Component Template Metadata field 'cache'
The configurations in web.xml are as follows:
<filter>
    <filter-name>OutputCacheFilter</filter-name>
    <filter-class>com.anchorage.web.filters.OutputCacheFilter</filter-class>
</filter>

<filter-mapping>
    <filter-name>OutputCacheFilter</filter-name>
    <url-pattern>*.jsp</url-pattern>
    <dispatcher>ERROR</dispatcher>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>INCLUDE</dispatcher>
    <dispatcher>REQUEST</dispatcher>
</filter-mapping>
Notice the mapping to the filter is not on *.html anymore (otherwise it would cache the entire output of the page). Instead, we are caching the output form *.jsp views.

The code in Output Cache is almost identical to the original, with a few minor changes. The highlighted lines have been added/modified:
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain chain)
        throws IOException, ServletException {
    HttpServletRequest request = (HttpServletRequest) servletRequest;
    HttpServletResponse response = (HttpServletResponse) servletResponse;

    CachedResponse cachedResponse;
    boolean useCache = isCacheEnabled(request);
    if (useCache) {
        String key = getKey(request);
        CacheElement<CachedResponse> cacheElement = cacheProvider.loadFromLocalCache(key);

        if (cacheElement.isExpired()) {
            synchronized (cacheElement) {
                if (cacheElement.isExpired()) {
                    CharResponseWrapper responseWrapper = new CharResponseWrapper(response);
                    chain.doFilter(request, responseWrapper);
                    cachedResponse = new CachedResponse(responseWrapper);
                    cacheElement.setPayload(cachedResponse);
                    RepositoryLocalItem model = getModel(request);
                    if (model == null) {
                        cacheProvider.storeInItemCache(key, cacheElement);
                    } else {
                        TCMURI tcmuri = new TCMURI(model.getId());
                        cacheProvider.storeInItemCache(key, cacheElement, tcmuri.getPublicationId(), tcmuri.getItemId());
                    }
                } else {
                    cachedResponse = cacheElement.getPayload();
                }
            }
        } else {
            cachedResponse = cacheElement.getPayload();
        }
    } else { // no cache
        CharResponseWrapper responseWrapper = new CharResponseWrapper(response);
        chain.doFilter(request, responseWrapper);
        cachedResponse = new CachedResponse(responseWrapper);
    }
    sendCachedResponse(response, cachedResponse);
}
The first change was to add the isCacheEnabled method. This method (presented below) checks whether or not the current request should be cached. We do this by verifying the presence of a special request header. The Page or Component controller sets such header in the request, depending on the value of the template metadata field 'cache'.
private boolean isCacheEnabled(HttpServletRequest request) {
    Object noCacheAttribute = request.getAttribute("NO_CACHE");
    request.removeAttribute("NO_CACHE");
    boolean result = noCacheAttribute == null || !noCacheAttribute.equals(Boolean.TRUE);
    return result;
}
The second change is in the getModel method. By contrast to the first Output Cache filter, the donut cache filter can be called for both Pages and Components. So method getPage had to be replaced by getModel -- a more generic model that attempts to look up the model of a Component or a Page form the attributes of the current request.
private RepositoryLocalItem getModel(HttpServletRequest request) {
    Object model = request.getAttribute(ComponentUtils.COMPONENT_NAME);
    if (model == null) {
        model = request.getAttribute(Constants.PAGE_MODEL_KEY);
    }

    if (model instanceof RepositoryLocalItem) {
        return (RepositoryLocalItem) model;
    }

    return null;
}

The third and last change is the else branch of the "if useCache". Namely, when set to false, the caching logic is completely bypassed. Instead the normal filter chain is invoked and the output is immediately sent in the response.

The other changes to the solution are in the Page and Component controllers. Their code had to be enhanced with logic that reads the value of the template metadata field 'cache' and add the request header NO_CACHE in case field value is 'false'.
boolean useCache = getCacheStatus(pageModel);
if (useCache) {
    request.removeAttribute("NO_CACHE");
} else {
    request.setAttribute("NO_CACHE", true);
}

And the method getCacheStatus is the one actually looking at the metadata field:
public boolean getCacheStatus(final GenericPage page) {
    PageTemplate pageTemplate = page.getPageTemplate();
    Map<String, Field> metadata = pageTemplate.getMetadata();

    if (metadata != null && metadata.containsKey("cache")) {
        String useCache = (String) metadata.get("cache").getValues().get(0);
        if (StringUtils.isNotEmpty(useCache)) {
            return !useCache.toLowerCase().equals("false");
        }
    }

    return true;
}




Comments

Popular posts from this blog

Running sp_updatestats on AWS RDS database

Part of the maintenance tasks that I perform on a MSSQL Content Manager database is to run stored procedure sp_updatestats . exec sp_updatestats However, that is not supported on an AWS RDS instance. The error message below indicates that only the sa  account can perform this: Msg 15247 , Level 16 , State 1 , Procedure sp_updatestats, Line 15 [Batch Start Line 0 ] User does not have permission to perform this action. Instead there are several posts that suggest using UPDATE STATISTICS instead: https://dba.stackexchange.com/questions/145982/sp-updatestats-vs-update-statistics I stumbled upon the following post from 2008 (!!!), https://social.msdn.microsoft.com/Forums/sqlserver/en-US/186e3db0-fe37-4c31-b017-8e7c24d19697/spupdatestats-fails-to-run-with-permission-error-under-dbopriveleged-user , which describes a way to wrap the call to sp_updatestats and execute it under a different user: create procedure dbo.sp_updstats with execute as 'dbo' as...

REL Standard Tag Library

The RSTL is a library of REL tags providing standard functionality such as iterating collections, conditionals, imports, assignments, XML XSLT transformations, formatting dates, etc. RSTL distributable is available on my Google Code page under  REL Standard Tag Library . Always use the latest JAR . This post describes each RSTL tag in the library explaining its functionality, attributes and providing examples. For understanding the way expressions are evaluated, please read my post about the  Expression Language used by REL Standard Tag Library . <c:choose> / <c:when> / <c:otherwise> Syntax:     <c:choose>         <c:when test="expr1">             Do something         </c:when>         <c:when test="expr2">             Do something else         </c:when...

Publish Binaries to Mapped Structure Groups

Today's TBB of the Week comes from the high demand in the field to publish binary assets to different mapped Structure Groups. By default SDL Tridion offers two ways of publishing binaries: All binaries publish to a folder defined in your Publication properties; All binaries rendered by a given template publish to a folder corresponding to a given Structure Group; In my view, both cases are terrible, over-simplified and not representing a real use-case. Nobody in the field wants all binaries in one folder and nobody separates binary locations by template. Instead, everybody wants a mapping mechanism that takes a binary and publishes it to a given folder, defined by a Structure Group, and this mapping is done using some kind of metadata. More often than not, the metadata is the TCM Folder location of the Multimedia Component. I have seen this implemented numerous times. So the solution to publish binaries to a given location implies finding a mapping from a TCM Folder to a...