2

我正在使用IndexDefinition来填充 neo4j 中给定属性的索引。

IndexDefinition indexDefinition = schema.indexFor(DynamicLabel.label("Person")).on("NodeType").create();

问题是当我使用类似的索引填充代码再次执行程序时,出现以下异常。

 org.neo4j.kernel.api.exceptions.schema.AlreadyIndexedException: Already indexed :label[0](property[0]).
    at org.neo4j.kernel.impl.api.DataIntegrityValidatingStatementContext.checkIndexExistence(DataIntegrityValidatingStatementContext.java:107)
    at org.neo4j.kernel.impl.api.DataIntegrityValidatingStatementContext.indexCreate(DataIntegrityValidatingStatementContext.java:78)

我只想检查一个属性的索引是否已经存在,然后不应该发生后续的索引填充。

4

2 回答 2

3

为什么不在尝试创建标签并获得(正确)异常之前检查标签的索引?

http://api.neo4j.org/2.0.0-M03/org/neo4j/graphdb/schema/Schema.html#getIndexes(org.neo4j.graphdb.Label)

于 2013-07-18T12:52:48.153 回答
1

这是我在代码中使用的辅助函数,所以我不会忘记将它包装在 tx.

/**
 * Helper method to get indexes by Label, wrapped in a tx
 * 
 * @param label
 * @return one or more IndexDefinitions to iterate over, or null if there
 *         were none matching the label.
 */
public Iterable<IndexDefinition> getIndexByLabel(Label label) {
    Iterable<IndexDefinition> x = null;
    try (Transaction tx = graphDb.beginTx()) {
        x = graphDb.schema().getIndexes(label);
    }
    return x;
}
于 2014-01-10T22:10:23.727 回答