我是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,但我认为答案与我正在尝试做的事情无关。
答案 0 :(得分:3)