Neo4j Apartment house

What is the best way to achieve multiple stays in neo4j?

I saw Tinkerpop and Spring Data.

I have several clients, and I would like to store client information in my own database for security.

I do not want to use labels or indexes to solve this problem.

+6
source share
2 answers

You mention that you “saw TinkerPop”, but I couldn’t say if this means that you saw it, considered it and rejected it as a solution here, so sorry if that is the case, and I am not answering your question.

I have successfully used TinkerPop's PartitionStrategy (formerly PartitionGraph ) to achieve multiple stays in Neo4j (and other graphical databases).

Read more about this here in this blog post on this subject.

+6
source

Neo4j does not currently support multi-tenant deployments. You can run multiple instances on one server, each located on a different port.

Alternatively, you can use a managed hosting service like GrapheneDB , which provides secure, independent instances. Disclaimer: I work at GrapheneDB.

+4
source

Source: https://habr.com/ru/post/975515/


All Articles