hchar 2005/01/19 03:49:49 Modified: auxiliary-builds/jdk15/yajcache/cache README Log: no message Revision Changes Path 1.2 +20 -0 jakarta-turbine-jcs/auxiliary-builds/jdk15/yajcache/cache/README Index: README =================================================================== RCS file: /home/cvs/jakarta-turbine-jcs/auxiliary-builds/jdk15/yajcache/cache/README,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- README 19 Jan 2005 11:01:15 -0000 1.1 +++ README 19 Jan 2005 11:49:49 -0000 1.2 @@ -1,4 +1,24 @@ +Yet Another Java Cache +---------------------- +Currently a jdk1.5 soft reference memory-only cache with: + +* zero configuration +* zero thread instantiation +* minimal memory impact (controlled by GC via SoftReference) +* no sychronized block +* no synchronized method +* the cache instance itself (ICache) can be used anywhere a map +instance can be used +* optional ICacheSafe to provide thread-safe cache get/put via either +Serializable or Java Bean patterns +* Intelligent guess to avoid deep clone whenever possible when +ICacheSafe is used +* String-only key constraint to avoid mutability issues +* Fully parameterized cache value type +* Full set of junit test cases, including emulation of hard-to-test +data race conditions + Pre-requisite ------------- 1) jdk 1.5.0_01+ installed
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
