我是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 完成这个场景?
这里有一个类似的问题,但我认为答案与我正在尝试做的事情无关。