如何提高查询效率
如图所示,其中lineId为唯一索引,engineerId为普通索引,但是以下两个查询效率很慢,请问该如何提高; 1.match (a:Line {lineId: ‘12345678’})-[:STREAM_TO*]-(b:Line) return a,b 2.match (a:Line {engineerId: ''111})-[:STREAM_TO*]-(b:Line) return a,b 谢谢
如图所示,其中lineId为唯一索引,engineerId为普通索引,但是以下两个查询效率很慢,请问该如何提高; 1.match (a:Line {lineId: ‘12345678’})-[:STREAM_TO*]-(b:Line) return a,b 2.match (a:Line {engineerId: ''111})-[:STREAM_TO*]-(b:Line) return a,b 谢谢