Re: [Neo4j] START VS WHERE clauses performance

2014-06-05 Thread Michael Azerhad
Thanks for your answer. Indeed, it's not really a comparison Start VS Where, but can't rename the title. Michael On Thursday, June 5, 2014 11:56:46 PM UTC+2, Alex Frieden wrote: > > Do a PROFILE before each in neo4j-shell. It should provide some incite > into what neo4j was doing under the ho

Re: [Neo4j] START VS WHERE clauses performance

2014-06-05 Thread Alex Frieden
Do a PROFILE before each in neo4j-shell. It should provide some incite into what neo4j was doing under the hood. However those should be the same. However that isn't comparing START vs WHERE. On Thu, Jun 5, 2014 at 5:49 PM, Michael Azerhad wrote: > Using Neo4J >= 2.0.0. > > Can I assert tha

[Neo4j] START VS WHERE clauses performance

2014-06-05 Thread Michael Azerhad
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 100 Car nodes in the graph. Thanks a lo