JCACHE (JSR 107)

View: [ 2009 | 2008 | 2007 | 2006 | 2005 | 2004 | 2003 ]

Articles
  

Articles:
  • Improve J2EE Application Performance with Caching by Scott Robinson   - [Clicks: 109]
    Caching data almost always improves efficiency, but in a J2EE application, where and when you cache can make all the difference.
    http://www.developer.com/java/ent/article.php/3412021 - Sep, 2004
  • Enhancing Web Application Performance with Caching by Neal Ford   - [Clicks: 77]
    Effective caching strategies can both lower the memory footprint and speed up your application. In this article, Neal Ford shows you how to implement the Flyweight Design Pattern as a caching mechanism on a sample application. He tests the app to measure heap size and garbage collector activity both before and after implementing caching, using a combination of JMeter and the OptimizeIt Profiler.
    http://www.theserverside.com/articles/article.tss?l=Caching - Jun, 2004
  • J2EE object-caching frameworks by Srini Penchikala   - [Clicks: 125]
    Object caching is an important aspect in the design and development of Web portals. In a typical Web portal application, we need the frequently accessed data in a JVM's memory, but, at the same time, we want the ability to automatically clear the data from memory when it's stale and refresh it with new data. Currently many open source implementations provide object caching in J2EE Web applications. This article describes a reusable object-caching framework created to cache data objects in a Web portal application. This framework can be seamlessly integrated into any Web application. Author Srini Penchikala discusses implementing object caching using three open source caching frameworks: Java Caching System, OSCache, and Java Object Cache. He presents these frameworks' installation and configuration details. Finally, he presents a performance comparison to show the effectiveness of caching objects.
    [Includes source code]
    http://www.javaworld.com/javaworld/jw-05-2004/jw-0531-cache.html - May, 2004

[Top]