You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
match p=(v1:domain)-[]->(v2:ip)-[*]->(v3:lvsvs)-[]->(v4:service) where v1.domain.name in ["domain1","domain2","domain3"] and v2.ip.ip in ["8.8.8.8"] and v3.lvsvs.ip in ["8.8.8.8"] return p
这个语句在我的服务器上执行耗时21秒。
如果说domain只有一个,就能降到1秒以内。有没大佬帮忙分析下,这个怎么写能快一点,或者指点下,整个逻辑中哪部分特别耗时?
The text was updated successfully, but these errors were encountered:
match p=(v1:domain)-[]->(v2:ip)-[*]->(v3:lvsvs)-[]->(v4:service) where v1.domain.name in ["domain1","domain2","domain3"] and v2.ip.ip in ["8.8.8.8"] and v3.lvsvs.ip in ["8.8.8.8"] return p
这个语句在我的服务器上执行耗时21秒。
如果说domain只有一个,就能降到1秒以内。有没大佬帮忙分析下,这个怎么写能快一点,或者指点下,整个逻辑中哪部分特别耗时?
The text was updated successfully, but these errors were encountered: