现在我有一个混合索引,它的状态是这样的:
gremlin> m.getGraphIndex('singleProperty_mixedIndex').getIndexStatus(m.getPropertyKey('prop1'))
==>DISABLED
现在我想将此索引的状态更新为启用,我该怎么办?
我已经尝试过多次使用这些 gremlin,但它不起作用:
m = graph.openManagement();
i = m.getGraphIndex('singleProperty_mixedIndex');
m.updateIndex(i, SchemaAction.REGISTER_INDEX);
m.awaitGraphIndexStatus(graph, 'singleProperty_mixedIndex').status(SchemaStatus.INSTALLED).call();
m.commit();
m=graph.openManagement();
谢谢你的帮助!