我有Rexster / Titan + Cassandra配置。我在顶点属性上创建了唯一索引。如何验证索引是否已正确创建?还要检查其他属性,如唯一性和有关创建的索引的任何其他信息?
答案 0 :(得分:1)
在使用Titan时,您可以使用TitanManagement API:
gremlin> g = TitanFactory.open('conf/titan-berkeleydb-es.properties')
==>titangraph[berkeleyje:/home/smallette/jvm/titan-0.5.4-hadoop1/conf/../db/berkeley]
gremlin> GraphOfTheGodsFactory.load(g)
==>null
gremlin> mgmt = g.getManagementSystem()
==>com.thinkaurelius.titan.graphdb.database.management.ManagementSystem@6ac756b
mgmt.getGraphIndexes(Vertex.class).collect{[it.name,it.fieldKeys.collect{it.cardinality}]}
==>[name, [SINGLE]]
==>[vertices, [SINGLE]]
gremlin> mgmt.rollback()
==>null
您可以像我从Gremlin控制台那样发出查询,或者您应该能够像Rexster的Gremlin Extension那样简单地发出相同的查询来获得该结果。请务必致电rollback
(或commit
)以关闭管理API事务,尤其是在使用Rexster时(Rexster不会对其进行自动管理)。