我正在使用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)
我只想检查一个属性的索引是否已经存在,然后不会发生后续的索引填充。
答案 0 :(得分:3)
在尝试创建标签并获得(正确的)异常之前,为什么不检查标签的索引?
答案 1 :(得分: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;
}
答案 2 :(得分:-1)
您可以知道是否为特定标签创建了任何节点/关系索引,如下所示
$(document).ready(function () {
setInterval(function() {
$.get(hostGlobal+'site/modulos/produto/msg.php', function (result) {
$('#chtmsg').html(result);
scTop();
});
}, 3000);
});