如何从 c# 后端在 neo4j 中创建数据库并启动该数据库?
How to create database and start that database in neo4j from c# backend?
我真的不知道如何创建数据库并从 c# 后端启动该数据库,就像 neo4j 社区一样。
I know how to Assign Neo4j URI
neoClient = new GraphClient(new Uri("http://localhost:7474/db/data"));
And I know how to connect with Neo4j GraphDB
neoClient.Connect(); after starting my database using Neo4j Community.
But actually I wanna create a folder(Neo4j Database) from c# backend and
start that database from c# backend.
Is it possible to do that using any api(neo4jClient)? Please help me.
服务器开始指向特定的 neostore directory。因此,当 RESTful 服务启动时,它们隐含地指向该目录。从 REST 服务端,您不能在磁盘上创建新的数据库;当您在代码中进行连接时,您将连接到存储在服务器配置为存储这些文件的任何位置的数据库。
不过,单个图形数据库可以存储任意数量的图形,在同一个整体图形中存储单独的不相交数据集也没有错,因此您可能需要重新考虑是否需要您的东西。重新要求。您可以像在任何情况下一样将结果存储在同一个图表中,只需 using the REST API.
我真的不知道如何创建数据库并从 c# 后端启动该数据库,就像 neo4j 社区一样。
I know how to Assign Neo4j URI
neoClient = new GraphClient(new Uri("http://localhost:7474/db/data"));
And I know how to connect with Neo4j GraphDB
neoClient.Connect(); after starting my database using Neo4j Community.
But actually I wanna create a folder(Neo4j Database) from c# backend and
start that database from c# backend.
Is it possible to do that using any api(neo4jClient)? Please help me.
服务器开始指向特定的 neostore directory。因此,当 RESTful 服务启动时,它们隐含地指向该目录。从 REST 服务端,您不能在磁盘上创建新的数据库;当您在代码中进行连接时,您将连接到存储在服务器配置为存储这些文件的任何位置的数据库。
不过,单个图形数据库可以存储任意数量的图形,在同一个整体图形中存储单独的不相交数据集也没有错,因此您可能需要重新考虑是否需要您的东西。重新要求。您可以像在任何情况下一样将结果存储在同一个图表中,只需 using the REST API.