如何获取 Neo4j 上每个节点的度数,然后在一个非常大的图中(200 万个节点和 500 万个关系)找出哪个节点的度数最大?
我知道我可以使用 Cypher 或 Gremlin 来实现这一点,例如:
start n = node(*)
match (n)--(c)
return n, count(*) as connections
order by connections dsec
或者
g.V.bothE
但是我的电脑内存只有2G~4G,我总是等待很长时间,当我发出上面的查询时得到“未定义”..
有没有人在使用 gremlin 或 cypher 在 neo4j 上查询如此巨大的图表时有一些经验?