在neo4j中创建等效的数据库

时间:2013-02-14 06:39:10

标签: neo4j

我是neo4j的新手。我需要针对一个neo4j实例运行几个不同的应用程序。

例如MySQL世界中的等价物,如果我有一个petstore应用程序,一个wordpress博客和一个日历应用程序,我会简单地说:

create database petstore;
grant all privileges on petstore.* to 'petstore'@localhost identified by 'sompass'

create database mywrodpressite;
grant all privileges on mywrodpressite.* to 'mywrodpressite'@localhost identified by 'sompass';

create database mycalendar;
grant all privileges on mycalendar.* to 'mycalendar'@localhost identified by 'sompass';

我的三个申请将彼此隔离。

问题:   如何使用Neo4j完成此方案?

有一个类似的问题here,但我认为答案与我正在尝试做的事情无关。

1 个答案:

答案 0 :(得分:3)

Neo4J不会在数据级别强制执行安全性。

但是,您可以实现SecurityRule并在服务器上注册它。

有关此内容的详细信息,请参阅Neo4J手册的security chapter