Update of /cvsroot/cweb/generic-native/src/java/org/CognitiveWeb/generic/core/om/cache
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv29240/src/java/org/CognitiveWeb/generic/core/om/cache
Modified Files:
LRUCache.java
Log Message:
Work on the bigdata-GOM integration.
Index: LRUCache.java
===================================================================
RCS file: /cvsroot/cweb/generic-native/src/java/org/CognitiveWeb/generic/core/om/cache/LRUCache.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** LRUCache.java 2 Jun 2006 12:58:51 -0000 1.4
--- LRUCache.java 30 Nov 2007 21:54:05 -0000 1.5
***************
*** 61,64 ****
--- 61,73 ----
* @author <a href="mailto:tho...@us...">Bryan Thompson
* </a>
+ *
+ * @todo This can be replaced by a hard reference ring buffer that scans the
+ * last N entries to minimize churn. This has been implemented in another
+ * module.<br>
+ * That same module now includes a generic version of the classes in this
+ * package. Backport the use of the generic version into the OM (except
+ * that it may wind up being unsynchronized for use in single threaded
+ * contexts, so we either need to add a synchronization wapper or not
+ * reintegrate the two versions).
*/
|