所以我创建了一个这样工作的数据库:
static class Record implements Serializable
{
final String action;
final String categoryOfAction;
final String personWhoPerformedAction;
final Long timeOfOccurrence;
public record(String actn, String cat, String person, Long time)
{
action = actn;
categoryOfAction = cat;
personWhoPerformedAction = person;
timeOfOccurence = time;
}
}
static void main(String[] args)
{
DB thedb = DBMaker.newFileDB(new File("D:\\thedb.db")
.compressionEnable()
.closeOnJvmShutdown()
.mmapFileEnableIfSupported()
.transactionDisable()
.asyncWriteEnable()
.make();
//primaryMap maps each record to a unique ID
BTreeMap<Integer,Record> primaryMap = thedb.createTreeMap("pri")
.keySerializer(BTreeKeySerializer.INTEGER)
.makeOrGet();;
//this map holds the unique ID of every record in primaryMap with a common action
NavigableSet<Object[]> map_commonAction = thedb.createTreeSet("com_a")
.comparator(Fun.COMPARABLE_ARRAY_COMPARATOR)
.makeOrGet();
//this map holds the unique ID of every record in primaryMap with a common person
NavigableSet<Object[]> map_commonPerson = thedb.createTreeSet("com_p")
.comparator(Fun.COMPARABLE_ARRAY_COMPARATOR)
.makeOrGet();
//binding map_commonAction to primaryMap so it is updated with primary
Bind.secondaryKey(primaryMap, map_commonAction, new Fun.Function2<String, Integer, Record>() {
@Override
public String run(Integer recordID, Record r) {
return r.action;
}
});
//binding map_commonPerson to primaryMap so it is updated with primary
Bind.secondaryKey(primaryMap, map_commonPerson, new Fun.Function2<String, Integer, Record>() {
@Override
public String run(Integer recordID, Record r) {
return r.personWhoPerformedAction;
}
});
//method used to attain all records with some action
for (Object[] k : Fun.filter(map_commonAction, "someAction"))
{
Record obtainedRecord = primary.get(k[1]);
}
//method used to attain all records with some person
for (Object[] k : Fun.filter(map_commonPerson, "somePerson"))
{
Record obtainedRecord = primary.get(k[1]);
}
}
在我创建它之后,我插入了 190 亿个项目。通过某些行动或个人获得所有记录的方法非常有效。我关闭了数据库,然后我再次尝试运行它,只是这次数据库已经构建并插入了所有项目,因此不需要插入 190 亿个项目。一旦我调用了通过某些操作或人员获取所有记录的方法之一,我收到此错误:
Exception in thread "main" java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to java.lang.Comparable
at org.mapdb.Fun$1.compare(Fun.java:31)
at org.mapdb.BTreeKeySerializer$BasicKeySerializer.compare(BTreeKeySerializer.java:206)
at org.mapdb.BTreeKeySerializer$BasicKeySerializer.compare(BTreeKeySerializer.java:156)
at org.mapdb.BTreeKeySerializer.compareIsSmaller(BTreeKeySerializer.java:48)
at org.mapdb.BTreeKeySerializer.findChildren(BTreeKeySerializer.java:89)
at org.mapdb.BTreeMap.nextDir(BTreeMap.java:843)
at org.mapdb.BTreeMap.findLargerNode(BTreeMap.java:1673)
at org.mapdb.BTreeMap$BTreeIterator.<init>(BTreeMap.java:1068)
at org.mapdb.BTreeMap$BTreeKeyIterator.<init>(BTreeMap.java:1323)
at org.mapdb.BTreeMap$SubMap.keyIterator(BTreeMap.java:2483)
at org.mapdb.BTreeMap$KeySet.iterator(BTreeMap.java:1900)
at org.mapdb.Fun$12.iterator(Fun.java:369)
at test.main(test.java:187)
所以然后检查了每张地图的大小
System.out.println(map_commonAction.size()); //returned correct size: 19billion
System.out.println(map_commonPerson.size()); //returned correct size: 19billion
System.out.println(primaryMap.size()); //returned correct size: 19billion
所以然后我检查了primaryMap是否工作,并检查了几个int值,它返回了一条应该的记录
Record r1 = primaryMap.get(1);
Record r2 = primaryMap.get(2);
System.out.println(r1.toString());
System.out.println(r2.toString());
仅当我尝试遍历 Fun.filter(map_common*, "something") 给出的内容时它才会失败,但调用它的行为不会使其失败,只是试图遍历它。我像这样测试它:
//this method fails and causes and exception to be thrown
for (Object[] k : Fun.filter(map_commonPerson, "person"))
{
System.out.println(primaryMap.get(k[1]).toString());
}
//this method doesn't cause an exception to be thrown
Iterable<Object[]> x = Fun.filter(map_commonPerson, "person");
所以现在我被卡住了,我不知道我的地图出了什么问题。一旦我创建了一个新数据库并插入了 190 亿个项目,它就可以完美运行,但是一旦我关闭它并尝试重新打开它以进行更多阅读,它就会失败。
任何人都可以帮忙吗?谢谢。