From: Bryan T. <tho...@us...> - 2007-03-27 17:12:03
|
Update of /cvsroot/cweb/bigdata-rdf/src/java/com/bigdata/rdf In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv3355/src/java/com/bigdata/rdf Modified Files: TripleStore.java Log Message: Corrected problem in the interpretation of maximumExtent for an IBufferStrategy vs an IJournal. Working through use of isolatable indices for the triple store. Index: TripleStore.java =================================================================== RCS file: /cvsroot/cweb/bigdata-rdf/src/java/com/bigdata/rdf/TripleStore.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** TripleStore.java 27 Mar 2007 14:35:08 -0000 1.24 --- TripleStore.java 27 Mar 2007 17:11:48 -0000 1.25 *************** *** 90,93 **** --- 90,94 ---- import com.bigdata.rdf.serializers.StatementSerializer; import com.bigdata.rdf.serializers.TermIdSerializer; + import com.bigdata.scaleup.MasterJournal; import com.bigdata.scaleup.PartitionedIndexView; import com.bigdata.scaleup.SlaveJournal; *************** *** 201,205 **** * @version $Id$ */ ! public class TripleStore extends /*Partitioned*/Journal { /** --- 202,206 ---- * @version $Id$ */ ! public class TripleStore extends MasterJournal { /** *************** *** 300,304 **** * Returns and creates iff necessary a scalable restart safe index for RDF * {@link _Statement statements}. ! * @param name The name of the index. * @return The index. * --- 301,308 ---- * Returns and creates iff necessary a scalable restart safe index for RDF * {@link _Statement statements}. ! * ! * @param name ! * The name of the index. ! * * @return The index. * |