如何在Orientdb中创建Edge唯一。
我提出的解决方案:
但它并不好。 Edge没有任何属性。
示例:
create edge is_friend from #12:0 to #12:3
如果我再次调用它,应该会出现类似于制作唯一索引时的错误。
谢谢
答案 0 :(得分:8)
在Edge out和in字段中创建约束。有关更多信息:
http://www.orientechnologies.com/docs/last/orientdb.wiki/Graph-Schema.html#constraints
在你的情况下试试这个:
CREATE INDEX UniqueEdges ON is_friend (out, in) unique