How to achieve multi-user experience in Neo4j

In my application, I want to store each client's data separately, so you would like to know how I can achieve multitasking in Neo4j.

As Neo4j doesn't support schemas in DB as in ORACLE, is there a way to run multiple instances say on different ports with one Neo4j install?

+3


source to share


1 answer


I don't find it possible to run different instances from the same installation. The neo4j software is self-contained, so you can have two copies of neo4j in different directories on the same server with different ports. In each of them, you can separately configure the port in the file conf/neo4j-server.properties

. It also has a nice feature: if you need to configure two tenants differently for different usage patterns, you can configure them separately.



+1


source







All Articles