The Source for Java Technology Collaboration
User: Password:



Jayson Falkner

Jayson Falkner's Blog

Blarg #4: Good Web Application Cache and Compression Support

Posted by jfalkner on November 21, 2003 at 08:39 AM | Comments (1)

Here is a write up I did about probably the best solution to providing cache and compression support for your web application. If you don't know what a cache or compression filter is, read this article, now. If you do, it is still worth taking a look. Several questions have been asked and answered about the practical use of these filters and how they compare to alternative choices that offer the same functionality.

In short, I'm arguing that this is something every Java web app developer should use, and I'm showing exactly how in general it should be done. Don't you think that is worth a quick look? Not to mention free, open-source code compliments the O'Reilly quality article.

Cheers,

Jayson Falkner - jayson@jspinsider.com


Bookmark blog post: del.icio.us del.icio.us Digg Digg DZone DZone Furl Furl Reddit Reddit
Comments
Comments are listed in date ascending order (oldest first) | Post Comment

  • Remember browser caching
    Always add a servlet filter to add the http header
    Cache-control: max-age=3600, public

    to static stylesheets, gifs, jpgs, javascript files etc.

    It's efficient to serve content from cache. It's much more efficient not to serve it at all.

    Posted by: nielsull on November 25, 2003 at 05:09 AM





Powered by
Movable Type 3.01D
 Feed java.net RSS Feeds