spanSize = file.readShort();
}
public static void main(String args[]) {
try {
RAIFile raif = new RAIFile(new File(args[0]), true, true);
BlockFile bf = new BlockFile(raif, true);
//bf.metaIndex.delete();
bf.makeIndex("foo", new NullBytes(), new NullBytes());
BSkipList b = bf.getIndex("foo", new NullBytes(), new NullBytes());
System.out.println(bf.allocPage());
bf.close();
raif.close();
} catch (Exception e) {
e.printStackTrace();
}
}