I have developed a Java application using Neo4j. Basically the user is able to write a cypher query and obtain some results from the graph database. The problem is that it just can access to the graph database one user at a time. And I need the graph database to be accessed by more users at a time. I am accessing the graph db using embedded mode, via Neo4j API for Java. But I have read that it can be possible to access de graph db by more than one user at a time using Neo4j in Server Mode.
I don't know how to start Neo4j in server mode, using Neo4j API for Java. And then executing the application by more than one user at a time.
Thank you,
Vicente