neo4j-sh (?)$ profile MATCH (n1:`Club`)<-[r1:CLUB]-(n:`Player`) WHERE n.`international` = true RETURN COUNT(*) AS `Count`;+---------+| Count |+---------+| 2181771 |+---------+1 row28676 ms
Compiler CYPHER 3.1
Planner COST
Runtime INTERPRETED
+-------------------+----------------+---------+---------+-------------+-----------------------------------------------+| Operator | Estimated Rows | Rows | DB Hits | Variables | Other |+-------------------+----------------+---------+---------+-------------+-----------------------------------------------+| +ProduceResults | 1027 | 1 | 0 | Count | Count || | +----------------+---------+---------+-------------+-----------------------------------------------+| +EagerAggregation | 1027 | 1 | 0 | Count | || | +----------------+---------+---------+-------------+-----------------------------------------------+| +Filter | 1054596 | 2181771 | 4872405 | n, n1, r1 | n.international == { AUTOBOOL0} AND n:Player || | +----------------+---------+---------+-------------+-----------------------------------------------+| +Expand(All) | 2445865 | 2445865 | 2445868 | n, r1 -- n1 | (n1)<-[r1:CLUB]-(n) || | +----------------+---------+---------+-------------+-----------------------------------------------+| +NodeByLabelScan | 3 | 3 | 4 | n1 | :Club |+-------------------+----------------+---------+---------+-------------+-----------------------------------------------+
Total database accesses: 7318277--
You received this message because you are subscribed to a topic in the Google Groups "Neo4j" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/neo4j/uZtQWJOC1HE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to neo4j+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
neo4j-sh (?)$ profile MATCH (n1:`Club`)<-[r1:CLUB]-(n:`Player`) WHERE n.`international` = true AND n1.name='FC Barcelona' RETURN COUNT(*) AS `Count`;+---------+| Count |+---------+| 2181771 |+---------+1 row7912 ms
Compiler CYPHER 3.1
Planner COST
Runtime INTERPRETED
+-------------------+----------------+---------+---------+-------------+--------------------------------------------------+| Operator | Estimated Rows | Rows | DB Hits | Variables | Other |+-------------------+----------------+---------+---------+-------------+--------------------------------------------------+| +ProduceResults | 593 | 1 | 0 | Count | Count || | +----------------+---------+---------+-------------+--------------------------------------------------+| +EagerAggregation | 593 | 1 | 0 | Count | || | +----------------+---------+---------+-------------+--------------------------------------------------+| +Filter | 351532 | 2181771 | 4869817 | n, n1, r1 | n.international == { AUTOBOOL0} AND n:Player || | +----------------+---------+---------+-------------+--------------------------------------------------+| +Expand(All) | 815288 | 2444571 | 2444572 | n, r1 -- n1 | (n1)<-[r1:CLUB]-(n) || | +----------------+---------+---------+-------------+--------------------------------------------------+| +NodeIndexSeek | 1 | 1 | 2 | n1 | :Club(name) |+-------------------+----------------+---------+---------+-------------+--------------------------------------------------+
Total database accesses: 7314391--
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+unsubscribe@googlegroups.com.
neo4j-sh (?)$ profile MATCH (n1:`Label1`)<-[r1:REL1]-(n:`Label2`) WHERE n.`prop1` = 'aaa' AND n1.`prop2`='bbb' RETURN COUNT(*) AS `Count`;+---------+| Count |+---------+| 2127237 |+---------+1 row5747 ms
Compiler CYPHER 3.1
Planner COST
Runtime INTERPRETED
+-------------------+----------------+---------+---------+-------------+-----------------------------------------------+| Operator | Estimated Rows | Rows | DB Hits | Variables | Other |+-------------------+----------------+---------+---------+-------------+-----------------------------------------------+| +ProduceResults | 498 | 1 | 0 | Count | Count || | +----------------+---------+---------+-------------+-----------------------------------------------+| +EagerAggregation | 498 | 1 | 0 | Count | || | +----------------+---------+---------+-------------+-----------------------------------------------+| +Filter | 248298 | 2127237 | 4815283 | n, n1, r1 | n.prop1 == { AUTOSTRING0} AND n:Label2 || | +----------------+---------+---------+-------------+-----------------------------------------------+| +Expand(All) | 815288 | 2444571 | 2444572 | n, r1 -- n1 | (n1)<-[r1:REL1]-(n) || | +----------------+---------+---------+-------------+-----------------------------------------------+| +NodeIndexSeek | 1 | 1 | 2 | n1 | :Label1(prop2) |+-------------------+----------------+---------+---------+-------------+-----------------------------------------------+
Total database accesses: 7259857To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+un...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscribe@googlegroups.com.