From: Bryan T. <tho...@us...> - 2007-03-08 18:14:54
|
Update of /cvsroot/cweb/bigdata/src/java/com/bigdata/rawstore In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv15000/src/java/com/bigdata/rawstore Modified Files: package.html Bytes.java Removed Files: SimpleMemoryRawStore.java SimpleFileRawStore.java Log Message: Updated the UML model and added a ZIP containing an HTML presentation of the model. Working on partitioned index support. Index: package.html =================================================================== RCS file: /cvsroot/cweb/bigdata/src/java/com/bigdata/rawstore/package.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** package.html 13 Feb 2007 23:01:05 -0000 1.1 --- package.html 8 Mar 2007 18:14:05 -0000 1.2 *************** *** 11,14 **** --- 11,20 ---- IRawStore} interface that supports atomic commit and is restart-safe. </p> + <p> + There are some trivial implementations in the test suite that are used + for bootstrapping classes with a dependency on {@link IRawStore}, such + as the {@link com.bigdata.objndx.BTree}, without introducing a dependency + on the {@link com.bigdata.journal.Journal}. + </p> </body> --- SimpleFileRawStore.java DELETED --- --- SimpleMemoryRawStore.java DELETED --- Index: Bytes.java =================================================================== RCS file: /cvsroot/cweb/bigdata/src/java/com/bigdata/rawstore/Bytes.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Bytes.java 5 Feb 2007 18:17:42 -0000 1.1 --- Bytes.java 8 Mar 2007 18:14:05 -0000 1.2 *************** *** 56,63 **** public class Bytes { ! public static final int SIZEOF_BYTE = 1; ! public static final int SIZEOF_SHORT = 2; ! public static final int SIZEOF_INT = 4; ! public static final int SIZEOF_LONG = 8; /* --- 56,66 ---- public class Bytes { ! public static final int SIZEOF_BYTE = 1; ! public static final int SIZEOF_SHORT = 2; ! public static final int SIZEOF_INT = 4; ! public static final int SIZEOF_LONG = 8; ! public static final int SIZEOF_FLOAT = 4; ! public static final int SIZEOF_DOUBLE = 8; ! public static final int SIZEOF_UUID = 16; /* |