慢neo4j密码查询

时间:2013-03-05 16:06:35

标签: neo4j cypher neography

我试图找出为什么我的密码查询运行得如此之慢(仅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

我做错了吗?

我正在使用基于neography gem的neoid

1 个答案:

答案 0 :(得分:2)

尝试此查询怎么样

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