Find node by id function faster
MATCH (i:Item) WHERE id(i) = 2345 RETURN i
or property index?
MATCH (i:Item { name: "Foo"}) RETURN i
I saw the profiling of these queries
Finding by id is always faster, since it directly points to node -record.
Source: https://habr.com/ru/post/1241207/More articles:MVC linq to sql sum - decimalapache phoenix Join query performance - joinStreaming video using NanoHttpd, Error: java.net.SocketException: sendto failed: EPIPE (Broken pipe) - javaWhat happens when we access the "Length" property of a string in C #? - stringUnable to install Bower packages - node.jsHow to get all tweets in a Hashtag using LinqToTwitter - c #Using Spring property placeholders with Jersey @Path and @ApplicationPath - javaParent padding affects vertical relative padding of child in Chrome - cssUsing "skipWhile" in combination with "repeatWhen" in RxJava to implement server polling - androidhttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1241212/convert-four-bytes-to-integer-using-c&usg=ALkJrhhVWNT3XYX7HTfEnbTf7z08ztMJgQAll Articles