Update of /cvsroot/cweb/bigdata-rdf/src/java/com/bigdata/rdf
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv5442/src/java/com/bigdata/rdf
Modified Files:
AutoIncCounter.java TripleStore.java
Log Message:
Further work supporting transactional isolation.
Index: AutoIncCounter.java
===================================================================
RCS file: /cvsroot/cweb/bigdata-rdf/src/java/com/bigdata/rdf/AutoIncCounter.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AutoIncCounter.java 11 Feb 2007 17:34:22 -0000 1.3
--- AutoIncCounter.java 21 Feb 2007 20:16:43 -0000 1.4
***************
*** 141,145 ****
try {
! ByteBuffer buf = store.read(addr, null);
ByteBufferInputStream bbis = new ByteBufferInputStream(buf);
--- 141,145 ----
try {
! ByteBuffer buf = store.read(addr);
ByteBufferInputStream bbis = new ByteBufferInputStream(buf);
Index: TripleStore.java
===================================================================
RCS file: /cvsroot/cweb/bigdata-rdf/src/java/com/bigdata/rdf/TripleStore.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** TripleStore.java 19 Feb 2007 01:05:47 -0000 1.18
--- TripleStore.java 21 Feb 2007 20:16:43 -0000 1.19
***************
*** 94,98 ****
* A triple store based on the <em>bigdata</em> architecture.
*
! * @todo Refactor to support transactions and concurrent load/query
* <p>
* Conflicts arise in the bigdata-RDF store when concurrent transactions
--- 94,99 ----
* A triple store based on the <em>bigdata</em> architecture.
*
! * @todo Refactor to support transactions and concurrent load/query and test
! * same.
* <p>
* Conflicts arise in the bigdata-RDF store when concurrent transactions
|