Using Neo4J >=  2.0.0.

Can I assert that the following ways of doing are similar in performance: 

MATCH (c: Car)
WHERE c.id = "345"         // id being indexed with CREATE INDEX ON :Car(id)
RETURN c


MATCH (c: Car {id: "345"})
RETURN c


Let's imagine 1000000 Car nodes in the graph.

Thanks a lot,

Michael

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to neo4j+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to