在我的应用程序中,我使用neo4j-community-2.3.0-M02和neo4j-jdbc 2.3.2。它创建大量线程,每个线程应执行3或4个密码查询。要执行查询,我使用以下方法,
private ResultSet executeCypher(String queryString) throws Exception {
try {
String restUrl = getPropertiesCache().getCofigProperty("neo4j_url");
String driver = getPropertiesCache().getCofigProperty("neo4j_driver");
String userName = getPropertiesCache().getCofigProperty("neo4j_user");
String passWord = getPropertiesCache().getCofigProperty("neo4j_pwd");
Class.forName(driver);
try{
Neo4jConnection connection = (Neo4jConnection)
DriverManager.getConnection(restUrl, userName, passWord);
try {
PreparedStatement stmt = connection.prepareStatement(queryString);
try{
ResultSet rs = (ResultSet) stmt.executeQuery(queryString);
stmt.close();
connection.close();
return rs;
}catch (SQLException e){
e.printStackTrace();
} catch (NullPointerException e1){
e1.printStackTrace();
} catch (RuntimeException e2){
e2.printStackTrace();
}
if(!stmt.isClosed()){
stmt.close();
}
}catch (Exception e){
e.printStackTrace();
}
if(!connection.isClosed()){
connection.close();
}
}catch (Exception e){
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
这意味着我为每个cypher查询创建数据库连接。我认为这是一个非常糟糕的主意,因为在创建大量连接时,大多数连接开始超时。我认为数据库连接池将有助于这种情况,还是有关于此的更好的想法比连接池?
如果连接池解决了这个问题,请举例说明如何使用neo4j jdbc驱动程序创建数据库连接池。
答案 0 :(得分:0)
neo4j-jdbc 2.3X驱动程序使用REST API连接到数据库,基本上它们是使用Restlet API的http调用,因此在创建/关闭JDBC连接时不会打开或关闭连接。