是否有任何特定的方法在neclipse中为neo4j写限制条款?

时间:2015-07-06 16:52:22

标签: neo4j graph-databases neo4j-java-api

我在neo4j eclipse实现中遇到以下问题:

1。我通过限制功能

得到错误
Code:
      String rows = "";        
    try ( Transaction ignored = graphDb.beginTx();
            Result result = graphDb.execute( "match(pr:Provider)-[t:TREATS]->(p:Problem) return pr.prdes as Name, t.pprcount as Visits, limit 5" ) )
      {
          while ( result.hasNext() )
          {
              Map<String,Object> row = result.next();
              for ( Entry<String,Object> column : row.entrySet() )
              {
                   rows += column.getKey() + ": " + column.getValue() + "; ";
              }
              rows += "\n";
          }
      }
    System.out.println(""+rows);

}

Output:
Exception in thread "main" org.neo4j.graphdb.QueryExecutionException: Invalid input '5': expected whitespace, comment, node labels, MapLiteral, a parameter, a relationship pattern, '(', '.', '[', "=~", IN, IS, '^', '*', '/', '%', '+', '-', '<', '>', "<=", ">=", '=', "<>", "!=", AND, XOR, OR, AS, ',', ORDER, SKIP, LIMIT, LOAD CSV, START, MATCH, UNWIND, MERGE, CREATE, SET, DELETE, REMOVE, FOREACH, WITH, RETURN, UNION, ';' or end of input (line 1, column 97 (offset: 96)) "match(pr:Provider)-[t:TREATS]->(p:Problem) return pr.prdes as Name, t.pprcount as Visits, limit 5"                                
  1. 在没有limit子句的情况下执行上述查询也需要50分钟。那么如何提高性能速度?

1 个答案:

答案 0 :(得分:2)

limits之前您不能使用逗号,请尝试

match(pr:Provider)-[t:TREATS]->(p:Problem) 
return pr.prdes as Name, t.pprcount as Visits limit 5

代替。

由于这是一个没有定义起点的全局查询,因此执行时间当然取决于您的数据大小。