REST API or Java Driver API for Neo4j?

2020-01-20T01:54:25

What suggestions do you have for creating neo4j API to serve clients, if I already created a neo4j database? It seems there are two sets of API: 1) Rest API: https://neo4j.com/docs/rest-docs/current/ However, most of the contents on this rest api link are marked as 'deprecated'. Why is that?

2) Java Driver API: https://neo4j.com/developer/java/

Are these two sets of APIs are supposed to chosen for Neo4j users? Any suggestions to use which one is better? Really appreciate!

Copyright License:
Author:「ling」,Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.
Link to:https://stackoverflow.com/questions/59812818/rest-api-or-java-driver-api-for-neo4j

About “REST API or Java Driver API for Neo4j?” questions

What suggestions do you have for creating neo4j API to serve clients, if I already created a neo4j database? It seems there are two sets of API: 1) Rest API: https://neo4j.com/docs/rest-docs/current/
Our current implementation has all calls to Neo4j through REST API. We are in process of replacing some of the code through neo4j-java-driver. We had some issues with performance which we tried to
I have been reading about neo4j last few days. I got very confused about whether I need to use REST API or if can I go with Java APIs. My need is to create millions of nodes which will have some
Is there an existing library that I can use that has the functionality: http://docs.neo4j.org/chunked/milestone/rest-api-transactional.html I've looked into https://github.com/neo4j/java-rest-bin...
I have a simple relationship test that I am trying to run to create a unique node using Rest API (java-rest-binding) https://github.com/neo4j/java-rest-binding but unfortunately I am stuck on somet...
Is there a way to manually acquire write lock on a certain set of nodes via Neo4J Java API or Cypher? There are examples in documentation, but only for embedded Neo4j version. Standard Java Transa...
having problems with the neo4j java-rest-binding API git clone https://github.com/neo4j/java-rest-binding mvn clean package Then got my JAR. Tried this: import org.neo4j.rest.graphdb.RestAPI;
I came across https://github.com/neo4j/neo4j/blob/master/community/kernel/src/main/java/org/neo4j/graphdb/event/TransactionData.java which allows to capture data that was changed within the course ...
I'm about to use Neo4j Server (Rest Api). I've thought to the way of unit testing Neo4j. I found NoSqlUnit that play the same role as DbUnit but dedicated to NoSql database like Neo4j. However, ...
I need some conceptual understanding of Neo4j REST api's usage. I went through the tutorial of neo4j RESt api and got some idea. So is it like these REST api's are used only to CREATE nodes and

Copyright License:Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.