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.
The configurations in web.xml are as follows:
The code in Output Cache is almost identical to the original, with a few minor changes. The highlighted lines have been added/modified:
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'.
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' |
<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