|
From: Bryan T. <tho...@us...> - 2007-03-29 17:01:51
|
Update of /cvsroot/cweb/bigdata-rdf/src/java/com/bigdata/rdf/serializers In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv16595/src/java/com/bigdata/rdf/serializers Modified Files: RdfValueSerializer.java Log Message: Fixed bug in overflow handling for triple store. Added DataService UUID[] to partition metadata. Index: RdfValueSerializer.java =================================================================== RCS file: /cvsroot/cweb/bigdata-rdf/src/java/com/bigdata/rdf/serializers/RdfValueSerializer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RdfValueSerializer.java 9 Feb 2007 20:18:56 -0000 1.1 --- RdfValueSerializer.java 29 Mar 2007 17:01:47 -0000 1.2 *************** *** 51,54 **** --- 51,55 ---- import org.openrdf.model.Value; + import com.bigdata.objndx.IIndex; import com.bigdata.objndx.IValueSerializer; import com.bigdata.rdf.RdfKeyBuilder; *************** *** 70,75 **** * optimization, UTF compression is just slightly slower on write. * ! * @todo use a per-leaf dictionary to factor out common strings as codes, ! * e.g., Hamming codes. */ public class RdfValueSerializer implements IValueSerializer { --- 71,79 ---- * optimization, UTF compression is just slightly slower on write. * ! * @todo use a per-leaf dictionary to factor out common strings as codes, e.g., ! * Hamming codes. This should be done in the basic btree package. ! * ! * @todo pass reference to the {@link IIndex} object so that we can version the ! * per value serialization? */ public class RdfValueSerializer implements IValueSerializer { |