我在使用 SDN 2.0.0.RELEASE 和 Neo4j 1.5 进行索引/持久化时遇到问题。
我有一个域类“Word”,它基本上看起来像这样:
@NodeEntity
public class Word {
@GraphId
Long graphId;
@Indexed(indexType = IndexType.SIMPLE, indexName = "Word_wordString")
private String wordString;
@RelatedTo(direction = Direction.INCOMING, elementClass = Sentence.class, type = "HAS")
private Set<Sentence> sentences;
public Word() {
}
public Word(String wordString) {
setWordString(wordString);
}
}
我用这种方法坚持的话:
private void persistWord(Sentence sentence, Word word) {
System.out.println("checking index for wordString: "
+ word.getWordString());
Word existingWord = wordRepository.findByPropertyValue(
"wordString", word.getWordString());
if (existingWord != null) {
existingWord.addSentence(sentence);
existingWord.persist();
System.out.println("persisted already existing word "
+ existingWord);
} else {
word.persist();
System.out.println("persisted word " + word);
}
它应该检查单词是否已经在图表中,如果是,我更改 wordRepository 返回的对象的一些属性,然后保持更改(-> if (existingWord != null))。如果该单词不在图中但它只是持久化(-> else)。
然而,这总是为每个单词创建一个新节点,即使它存在于图中。可以这么说,persist() 总是创建一个新节点。在图中出现两个具有相同 wordString 的单词后,repository 方法会抛出:
More than one element in org.neo4j.index.impl.lucene.LuceneIndex$1@1181df3. First element is 'Node[45]' and the second element is 'Node[83]'
这是怎么回事?
我也想知道 IndexType.SIMPLE,IndexType.POINT 和 IndexType.FULLTEXT 之间的区别是什么。(它不在 API 或良好关系指南中)