File tmpFile = new File("/experiment/data/vldb/xmark10.xml.dtms");
if(!tmpFile.exists()) {
throw new IllegalStateException("File not found: " + tmpFile.getAbsolutePath());
}
if(useNIO) {
return new NioFixedSegment(tmpFile, pageSize * 1024, true);
} else {
return new FixedSegments(tmpFile, pageSize * 1024);
}
}