Creating multiple databases on one server using Neo4j

后端 未结 3 1288
鱼传尺愫
鱼传尺愫 2020-12-14 05:56

How do you create multiple databases on one server using neo4j? I have multiple clients, and I want to separate all client information into different database to avoid data

3条回答
  •  臣服心动
    2020-12-14 06:10

    or add a special label to each node for a client, e.g. :ClientName. or create a root node for each clients database, and always begin the querying at the first node.

    in neo4j db, you can have separate subgraphs. if you do programm your code good, there should be no reason to have such leaks.

提交回复
热议问题