Class BTree

java.lang.Object
org.eclipse.rdf4j.sail.nativerdf.btree.BTree
All Implemented Interfaces:
Closeable, AutoCloseable

public class BTree extends Object implements Closeable
Implementation of an on-disk B-Tree using the java.nio classes that are available in JDK 1.4 and newer. Documentation about B-Trees can be found on-line at the following URLs:
  • http://cis.stvincent.edu/swd/btree/btree.html
  • ,
  • http://bluerwhite.org/btree/
  • , and
  • http://semaphorecorp.com/btp/algo.html
  • .
The first reference was used to implement this class.

Author:
Arjohn Kampman, Enrico Minack