simple lookup takes several minutes despite using an index
问题 I have a decently sized graph (~600 million nodes, 3.5 billion edges) that I imported into neo4j. The graph is also quite dense (median edge count around 10); though I'm not sure if that affects performance. For one type of node (:Authors) - there are roughly 200 million nodes of this type - I would like to run a query for a specific name, which is stored in the property normalizedName . Here is the (very simple) query: MATCH (a:AUTHOR) WHERE a.normalizedName = "jonathan smith" RETURN a As