gpt4 book ai didi

orientdb - 在 OrientDb 中查找并删除重复边

转载 作者:行者123 更新时间:2023-12-04 05:59:55 27 4
gpt4 key购买 nike

考虑我们有 Vertex User 和 Edge FriendsWith。FriendsWith 可以在两个方向上进出(通常是在 2 个用户之间或在 2 个用户之间)。

重复是指从一个用户到另一个用户的出入次数超过一次(出入一起不被视为重复)

有没有办法找到重复的边并删除它们?

更新 添加了说明问题的图片

enter image description here

谢谢。

最佳答案

这是我的 javascript 函数:

var g=orient.getGraph();
var C=g.command('sql','select from FriendsWith');
var arr = new Array(C.length);
var toRemove = new Array();

for(i=0;i<C.length;i++){
var found = false;
for (x = 0; x < i+1 && !found; x++) {
if (arr[x] === C[i].getProperty("out").getId()+" "+C[i].getProperty("in").getId()) {
found = true;
toRemove.push(C[i].getId());
}
}
arr[i] = C[i].getProperty("out").getId()+" "+C[i].getProperty("in").getId();
}

for(a=0;a<toRemove.length;a++){
var C=g.command('sql','delete edge '+toRemove[a]);
}

希望对您有所帮助。再见

关于orientdb - 在 OrientDb 中查找并删除重复边,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34857558/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com