我试图找出为什么我的密码查询运行如此缓慢(只有5000个节点的2-5秒)。该查询试图查找个人资料在其网络中可以到达的所有职位(他的朋友或他的朋友的朋友在同一家公司工作的职位)
这是查询:
Start current_profile= node:node_auto_index(neoid_unique_id = "Profile:1")
Match current_profile-[r:friendships*0..2]->friends-[:roles]->company-[:positions]->jobs
return distinct company.fmj_id
我试着精简查询,看看我做错了什么,甚至这个简单的查询花费了太长时间:
START root=node(0)
Match root-[:job_subref]->j-[:jobs]->jobss
return jobss
我做错了什么吗?
我使用的neoid是基于neography gem
试试这个查询
Start current_profile= node:node_auto_index(neoid_unique_id = "Profile:1")
Match current_profile-[r:friendships*0..2]->friends
WITH friends
friends-[:roles]->company-[:positions]->jobs
RETURN company.fmj_id