Cypher - EXPLAIN PROFILE

EXPLAIN  
   -- 只想查看查询计划,而不想运行语句,对数据库不会做出任何改变

查看执行计划应该从底端往上看:
AllNodeScan   全库扫描
NodeByLabelScan  标签扫描
NodeIndexSeek  索引查询

查询的性能通常以 dbhit 的值来度量。

match (u:User)
where u.name = 'aa'
using index u:User(name)            // 使用索引提示查询
using index u:User(userId)             // 使用多个索引提示查询
return u

 

标签扫描提示
match (u:User)  
using scan u:User           //不使用本应使用的索引,而采用标签扫描
where u.name  = 'aa'
return u  

 

提示在单个节点上的连接

using join on  变量,变量  

 

 

 PROFILE  
    -- 想运行查询语句,并查看哪个运算符占了大部分的工作。语句将被执行

 

 

 

 

 

 

 

 

 

 

 

转载于:https://my.oschina.net/u/2552286/blog/3072576

你可能感兴趣的:(Cypher - EXPLAIN PROFILE)