Blogging Roller

Dave Johnson on open web technologies, social software and software development

OSCache does not require JSP

Ugo, on first glance OSCache does appear to be JSP centric but it really does not require JSP. I would not have been able to use OSCache if it required JSP, because Roller weblog pages are not JSP pages - they are generated by Velocity templates.

OSCache includes a caching Servlet Filter. The CacheFilter automatically generates a cache-key based on incoming request parameters and either pulls the corresponding entry from the cache or runs the request. So, adding OSCache to your webapp can be as simple as dropping the OSCache jar in your classpath and adding a Servlet Filter entry to your web.xml.

I had to do a little more work than that because I need to cache on a per user basis and the auto-generated cache-key does not consider request.getUserPrincipal(). So, I had to write my own Servlet Filter based on CacheFilter. Also, CacheFilter is not very well documented, so I had to look at the source to figure it out.

Dave Johnson in Java • 🕒 02:45PM Jul 01, 2002
Tags: Java
Comments:

Post a Comment:
  • HTML Syntax: NOT allowed